Skip to content

Commit

Permalink
Replace users with uzers. Fix #56
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-petruk committed Feb 8, 2025
1 parent b482e7c commit c3ee222
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ serde_derive='1.0'
serde_yaml='0.9'
md5="0"
prettytable-rs="0.10"
users="0.11"
uzers="0.12"
walkdir="2"
number_prefix="0.4"
clap = { version = "3", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn docker_volume_cmd(
let mut vol_cmd = Command::new("docker");
vol_cmd.args(["run", "-t", "--rm"]);
if run_as_current_user {
vol_cmd.args(["-u", &format!("{}", users::get_current_uid())]);
vol_cmd.args(["-u", &format!("{}", uzers::get_current_uid())]);
}
vol_cmd.args([
"-v",
Expand Down

0 comments on commit c3ee222

Please sign in to comment.