Skip to content

Commit

Permalink
Merge branch 'master' into issue/3139
Browse files Browse the repository at this point in the history
  • Loading branch information
mahigupta authored Aug 11, 2024
2 parents 8fab22d + 1cbb97e commit de33f88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def devenv(c):
"""Brings up the test environment, by wrapping docker compose."""
clean(c)
cmd = "docker-compose --profile all up -d --build"
cmd = "docker compose --profile all up -d --build"
run(cmd)


Expand Down Expand Up @@ -85,7 +85,7 @@ def clean(c):
shutil.rmtree("build")
if os.path.isdir("dist"):
shutil.rmtree("dist")
run("docker-compose --profile all rm -s -f")
run("docker compose --profile all rm -s -f")


@task
Expand Down

0 comments on commit de33f88

Please sign in to comment.