Skip to content

Commit

Permalink
fix: Don't use '' in format arg
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpinder committed May 12, 2024
1 parent 6600d17 commit 33f0ff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/drivers/docker_driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ impl DockerDriver {
fn setup() -> Result<()> {
trace!("DockerDriver::setup()");

trace!("docker buildx ls --format='{{.Name}}'");
trace!("docker buildx ls --format={}", "{{.Name}}");
let ls_out = Command::new("docker")
.arg("buildx")
.arg("ls")
.arg("--format='{{.Name}}'")
.arg("--format={{.Name}}")
.output()?;

if !ls_out.status.success() {
Expand Down

0 comments on commit 33f0ff1

Please sign in to comment.