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
5
5
# shellcheck disable=SC2242
6
6
7
7
# 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
9
9
10
10
PHP=$( command -v php)
11
11
if [ ! -x " $PHP " ]; then
12
12
echo " PHP ($PHP ) not found or not executable"
13
13
# shellcheck disable=SC2242
14
- exit - 1
14
+ exit 1
15
15
fi
16
16
if [ ! -x /usr/bin/checkbashisms ]; then
17
17
echo " /usr/bin/checkbashisms not found or not executable"
18
18
# shellcheck disable=SC2242
19
- exit - 1
19
+ exit 1
20
20
fi
21
21
if [ ! -x /usr/bin/shellcheck ]; then
22
22
echo " /usr/bin/shellcheck not found or not executable"
23
23
# shellcheck disable=SC2242
24
- exit - 1
24
+ exit 1
25
25
fi
26
26
27
27
find . \( \
You can’t perform that action at this time.
0 commit comments