refactor(stacks): remove utils

This commit is contained in:
Chaim Lev-Ari
2021-02-10 16:48:25 +02:00
parent 5b059f84de
commit b5c053b95c
3 changed files with 1 additions and 41 deletions

View File

@@ -68,7 +68,7 @@ func Test_UpAndDown(t *testing.T) {
}
func containerExists(containerName string) bool {
cmd := exec.Command(osProgram("docker"), "ps", "-a", "-f", fmt.Sprintf("name=%s", containerName))
cmd := exec.Command("docker", "ps", "-a", "-f", fmt.Sprintf("name=%s", containerName))
out, err := cmd.Output()
if err != nil {