From: Kevin Day Date: Wed, 21 Feb 2024 02:46:28 +0000 (-0600) Subject: Bugfix: Bash does not like "let x=" without an r-value. X-Git-Tag: 0.7.0~232 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=f3a3a9f56c21aaab1d307340cc3af609bb077020;p=fll Bugfix: Bash does not like "let x=" without an r-value. --- 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