From e0ffb88a2e60c6f0f4c5520468070fcf0426c7d5 Mon Sep 17 00:00:00 2001 From: Jeremy Lavergne Date: Fri, 19 Jul 2019 15:44:28 -0400 Subject: [PATCH] [TOOLS] fixes from shellcheck --- tools/FetchMacOS/fetch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/FetchMacOS/fetch.sh b/tools/FetchMacOS/fetch.sh index 4900cc9..df76311 100755 --- a/tools/FetchMacOS/fetch.sh +++ b/tools/FetchMacOS/fetch.sh @@ -5,7 +5,7 @@ set +x; SCRIPTDIR="$(dirname "$0")"; -cd $SCRIPTDIR +cd "$SCRIPTDIR" initpip() { if [ -x "$(command -v easy_install)" ]; then @@ -43,6 +43,6 @@ getpython(){ getpip getpython -$PYTHONBIN fetch-macos.py $* +$PYTHONBIN fetch-macos.py "$@" exit;