File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,23 +5,23 @@ set -euo pipefail
55# shellcheck disable=SC2242
66
77# Change directory to the root of the repo relative to this script file
8- cd " $( dirname " $0 " ) /../../" || exit - 1
8+ cd " $( dirname " $0 " ) /../../" || exit 1
99
1010PHP=$( command -v php)
1111if [ ! -x " $PHP " ]; then
1212 echo " PHP ($PHP ) not found or not executable"
1313 # shellcheck disable=SC2242
14- exit - 1
14+ exit 1
1515fi
1616if [ ! -x /usr/bin/checkbashisms ]; then
1717 echo " /usr/bin/checkbashisms not found or not executable"
1818 # shellcheck disable=SC2242
19- exit - 1
19+ exit 1
2020fi
2121if [ ! -x /usr/bin/shellcheck ]; then
2222 echo " /usr/bin/shellcheck not found or not executable"
2323 # shellcheck disable=SC2242
24- exit - 1
24+ exit 1
2525fi
2626
2727find . \( \
You can’t perform that action at this time.
0 commit comments