From f3a3a9f56c21aaab1d307340cc3af609bb077020 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 20 Feb 2024 20:46:28 -0600 Subject: [PATCH] Bugfix: Bash does not like "let x=" without an r-value. --- build/scripts/bootstrap-example.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/bootstrap-example.sh b/build/scripts/bootstrap-example.sh index e492dc0..5641d1f 100644 --- a/build/scripts/bootstrap-example.sh +++ b/build/scripts/bootstrap-example.sh @@ -78,7 +78,7 @@ if [[ ${SHELL_ENGINE} == "zsh" ]] ; then fi let i=2 -let j= +j= p= while [[ ${i} -le $# ]] ; do -- 1.8.3.1