Maybe this is how you increment an integer?

This commit is contained in:
David Robertson 2023-09-20 11:53:20 +01:00
parent 921ed6e8b3
commit bc5aa5412f
No known key found for this signature in database
GPG Key ID: 903ECE108A39DEDD

View File

@ -21,7 +21,7 @@ do
fi fi
echo "Waiting (total ${attempts}s) for server to start..." echo "Waiting (total ${attempts}s) for server to start..."
sleep 1 sleep 1
((attempts++)) attempts=$((attempts+1))
done done
go test "$@" go test "$@"