Skip to content

Commit

Permalink
Merge pull request #26 from rails/absolute-path
Browse files Browse the repository at this point in the history
Use absolute path for the current directory
  • Loading branch information
rafaelfranca authored Aug 14, 2024
2 parents 3d44bda + 2d31fc1 commit 0e819cd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/docker_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ impl DockerClient {
}

fn set_workdir(command: &mut Command) {
let binding = std::env::current_dir().unwrap();
let current_dir = binding.to_str().unwrap();
let path = std::env::current_dir().expect("Failed to get current directory");
let absolute_path = path.canonicalize().expect("Failed to get current directory");
let current_dir = absolute_path.to_str().expect("Failed to get current directory");

command
.arg("-v")
Expand Down Expand Up @@ -167,7 +168,8 @@ mod tests {
assert_eq!(command.get_program(), "docker");

let binding = current_dir().unwrap();
let current_dir = binding.to_str().unwrap();
let absolute_path = binding.canonicalize().unwrap();
let current_dir = absolute_path.to_str().unwrap();

let args: Vec<&OsStr> = command.get_args().collect();

Expand Down

0 comments on commit 0e819cd

Please sign in to comment.