f32c683601
The following features are available in Busybox ash, so we don't need to warn about them for runtime scripts: - local keyword - echo -n / -e - String indexing These warnings are new in shellcheck 0.7.2, which would otherwise fail for various scripts.
29 lines
646 B
Bash
Executable File
29 lines
646 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
is_scriptfile() {
|
|
echo "$1" | grep -qE '.*\.sh$' || head -n1 "$1" | grep -qE '^#.*(sh|bash)$'
|
|
}
|
|
|
|
find contrib -type f | while read -r file; do
|
|
is_scriptfile "$file" || continue
|
|
|
|
echo "Checking $file"
|
|
shellcheck -f gcc "$file"
|
|
done
|
|
|
|
find package -type f | while read -r file; do
|
|
is_scriptfile "$file" || continue
|
|
|
|
echo "Checking $file"
|
|
shellcheck -f gcc -x -s sh -e SC2039,SC1091,SC2155,SC2034,SC3043,SC3037,SC3057 "$file"
|
|
done
|
|
|
|
find scripts -type f | while read -r file; do
|
|
is_scriptfile "$file" || continue
|
|
|
|
echo "Checking $file"
|
|
shellcheck -f gcc -x -e SC2154,SC1090,SC2181,SC2155,SC2148,SC2034,SC2148 "$file"
|
|
done
|