Skip to content

Commit

Permalink
fixup! Add docker check step to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joaofl committed Jan 2, 2025
1 parent 0096c6d commit 8855a03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/servers/dhcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ mod tests {
let _out = Command::new("docker")
.arg("compose")
.arg("build")
.current_dir(dir)
.current_dir(dir.clone())
.output()
.expect("Failed to execute command");
.expect(&format!("Failed to execute command. Check directory {}", dir.display()));

// println!("{}", String::from_utf8_lossy(&output.stdout));
// println!("{}", String::from_utf8_lossy(&output.stdout));
});
}

Expand Down

0 comments on commit 8855a03

Please sign in to comment.