From a9678d184f680306e5670a3f1b44047ea573d2b1 Mon Sep 17 00:00:00 2001 From: spypsy Date: Tue, 24 Oct 2023 11:24:27 +0100 Subject: [PATCH] fix: aztec-sandbox docker-compose directory (#2989) Please provide a paragraph or two giving a summary of the change, including relevant motivation and context. # Checklist: Remove the checklist to signal you've completed it. Enable auto-merge if the PR is ready to merge. - [ ] If the pull request requires a cryptography review (e.g. cryptographic algorithm implementations) I have added the 'crypto' tag. - [ ] I have reviewed my diff in github, line by line and removed unexpected formatting changes, testing logs, or commented-out code. - [ ] Every change is related to the PR description. - [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this pull request to relevant issues (if any exist). --- yarn-project/canary/scripts/run_tests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/canary/scripts/run_tests b/yarn-project/canary/scripts/run_tests index 6ea4c000880..21894dbedb0 100755 --- a/yarn-project/canary/scripts/run_tests +++ b/yarn-project/canary/scripts/run_tests @@ -23,5 +23,5 @@ retry docker pull $IMAGE_URI retry docker tag $IMAGE_URI aztecprotocol/canary:latest export SANDBOX_VERSION=canary -docker-compose -f ../../aztec-sandbox/docker-compose.yml -f $COMPOSE_FILE rm -f -docker-compose -f ../../aztec-sandbox/docker-compose.yml -f $COMPOSE_FILE up --exit-code-from canary +docker-compose -f ../aztec-sandbox/docker-compose.yml -f $COMPOSE_FILE rm -f +docker-compose -f ../aztec-sandbox/docker-compose.yml -f $COMPOSE_FILE up --exit-code-from canary