2020-11-10 09:53:00 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Ignoring third-party directories that we don't want to parse
|
2020-11-11 09:50:31 +01:00
|
|
|
# shellcheck disable=SC2046
|
2020-11-10 09:53:00 +01:00
|
|
|
shellcheck $(git ls-files '*.sh' | grep -Ev "glib/libcharset|glib/dirent")
|