Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading