From 43b1c7bea9531d16cbdf6f9a8690f735d2190730 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Tue, 25 May 2021 10:08:55 +0200 Subject: [PATCH] vagrant_up: fix bash legacy syntax This commit rewrites the deprecated syntax used in vagrant_up.sh Signed-off-by: Guillaume Abrioux --- tests/scripts/vagrant_up.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/vagrant_up.sh b/tests/scripts/vagrant_up.sh index 819ff46c8..b400c0da7 100644 --- a/tests/scripts/vagrant_up.sh +++ b/tests/scripts/vagrant_up.sh @@ -8,7 +8,7 @@ until [ $retries -ge 5 ] do echo "Attempting to start VMs. Attempts: $retries" timeout 10m time vagrant up "$@" && break - retries=$[$retries+1] + retries=$((retries+1)) sleep 5 done