2020-02-29 10:31:43 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e -o pipefail
|
|
|
|
|
|
|
|
shfmtflags="-bn -ci -sr"
|
|
|
|
# NOTE: `git grep '^#!'` may also pick up non-shell script files.
|
|
|
|
# Add exceptional files to `egrep -v` if any false-positive is detected.
|
2021-05-27 20:15:56 -04:00
|
|
|
if git grep --name-only '^#!' | egrep -v '(vendor|\.go|Jenkinsfile|\.py|\.bats)' \
|
2020-02-29 10:31:43 -05:00
|
|
|
| xargs shfmt -d $shfmtflags; then
|
|
|
|
echo 'Congratulations! The shell scripts are properly formatted.'
|
|
|
|
else
|
|
|
|
echo "Please reformat the shell scripts with \`shfmt -w ${shfmtflags}\`."
|
|
|
|
exit 1
|
|
|
|
fi
|