Skip to content

Commit 89225c6

Browse files
authored
chore(ci): remove retry from aztec-up/scripts/run_test.sh (#16445)
This PR removes usage of `retry` from `aztec-up/scripts/run_test.sh` as this just causes the script to fail as `retry` is not defined. I've spoken with Adam about this and he asked for me to help revert this change while he's on holiday.
2 parents ed91664 + 9aac208 commit 89225c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aztec-up/scripts/run_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -euo pipefail
33

44
trap 'docker rm -f $1 &>/dev/null' SIGINT SIGTERM EXIT
55
docker rm -f $1 &>/dev/null || true
6-
retry docker pull aztecprotocol/dind
6+
docker pull aztecprotocol/dind
77
docker run --rm \
88
-d \
99
--privileged \

0 commit comments

Comments
 (0)