Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Aug 7, 2024
1 parent c7f4d19 commit 308fcb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

***Added:***

- Update dependencies

## 0.23.0 - 2024-08-03

***Added:***
Expand Down
2 changes: 1 addition & 1 deletion src/distribution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::path::Path;
use std::process::{exit, Command, ExitStatus};

use anyhow::{bail, Context, Result};
use fs4::FileExt;
use fs4::fs_std::FileExt;
use tempfile::tempdir;

use crate::{app, compression, fs_utils, network, process};
Expand Down
2 changes: 1 addition & 1 deletion src/fs_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::fs;
use std::path::PathBuf;

use anyhow::{Context, Result};
use fs4::FileExt;
use fs4::fs_std::FileExt;

use crate::terminal;

Expand Down

0 comments on commit 308fcb7

Please sign in to comment.