Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Aug 5, 2024
1 parent 227d3f9 commit 1df4c56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/pkg/infra/docker/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import (
// execCompose runs a Docker Compose command for a testnet.
func execCompose(ctx context.Context, dir string, args ...string) error {
return exec.Command(ctx, append(
[]string{"docker","compose", "--ansi=never", "-f", filepath.Join(dir, "docker-compose.yml")},
[]string{"docker", "compose", "--ansi=never", "-f", filepath.Join(dir, "docker-compose.yml")},
args...)...)
}

// execComposeVerbose runs a Docker Compose command for a testnet and displays its output.
func execComposeVerbose(ctx context.Context, dir string, args ...string) error {
return exec.CommandVerbose(ctx, append(
[]string{"docker","compose", "--ansi=never", "-f", filepath.Join(dir, "docker-compose.yml")},
[]string{"docker", "compose", "--ansi=never", "-f", filepath.Join(dir, "docker-compose.yml")},
args...)...)
}

Expand Down

0 comments on commit 1df4c56

Please sign in to comment.