Skip to content

Commit

Permalink
fix: don't bind ports when running the cli (#7596)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr authored Jul 24, 2024
1 parent ba90e2c commit 5a907c6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aztec-up/bin/aztec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ elif [ $# == 2 ] && [ "$1" == "start" ] && [ "$2" == "--sandbox" ]; then
trap cleanup SIGINT

get_compose -p sandbox $FILE_ARG up --force-recreate --remove-orphans
else
elif [ "$1" == "start" ]; then
$(dirname $0)/.aztec-run aztecprotocol/aztec "$@"
else
SKIP_PORT_ASSIGNMENT=1 $(dirname $0)/.aztec-run aztecprotocol/aztec "$@"
fi

0 comments on commit 5a907c6

Please sign in to comment.