fix "dirname: missing operand" bug from setup.sh

This commit is contained in:
bbracker 2022-03-05 17:21:34 -08:00
parent 41e111a44f
commit 34c460b451

View File

@ -7,7 +7,7 @@
echo "Executing Wally setup.sh"
# Path to Wally repository
WALLY=$(dirname ${BASH_SOURCE})
WALLY=$(dirname $0)
export WALLY=$(cd "$WALLY" && pwd)
echo \$WALLY set to ${WALLY}