File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ PATH_DIR_CURRENT=$(cd "$(dirname "${BASH_SOURCE:-$0}")" && pwd)
88PATH_DIR_PARENT=$( cd " $( dirname " ${PATH_DIR_CURRENT} " ) " && pwd)
99PATH_DIR_ROOT=$( dirname " ${PATH_DIR_PARENT} " )
1010
11- cd $PATH_DIR_PARENT
11+ cd " $PATH_DIR_PARENT "
1212
1313set -eu
1414
@@ -19,7 +19,7 @@ set -eu
1919INDENT=' ' # Indentation depth for multiline output
2020
2121function indentStdin() {
22- while read line; do
22+ while read -r line; do
2323 echo " ${INDENT}${line} "
2424 done
2525 echo
@@ -73,6 +73,6 @@ tar --version
7373# -----------------------------------------------------------------------------
7474# Run Actual Tests
7575# -----------------------------------------------------------------------------
76- /bin/bash $ PATH_DIR_CURRENT /common-tests.sh
76+ /bin/bash " ${ PATH_DIR_CURRENT} /common-tests.sh"
7777
7878exit $?
You can’t perform that action at this time.
0 commit comments