-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck
executable file
·47 lines (39 loc) · 1.13 KB
/
check
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh
# check - Checks scripts with whatever checkers seem appropriate.
#
# This file is part of newrepo-findrepo, tools for small Git servers.
#
# Written in 2018, 2019 by Eliah Kagan <degeneracypressure@gmail.com>.
#
# To the extent possible under law, the author(s) have dedicated all copyright
# and related and neighboring rights to this software to the public domain
# worldwide. This software is distributed without any warranty.
#
# You should have received a copy of the CC0 Public Domain Dedication along
# with this software. If not, see
# <http://creativecommons.org/publicdomain/zero/1.0/>.
set -e
status=0
do_check() {
checker="$1" path_to_check="$2"
printf 'Checking %s with %s.\n' "$2" "$1"
"$checker" -- "$path_to_check" || status="$?"
}
examine() {
path="$1"
case "$(file --mime-type -- "$1" | awk '{ print $2 }')" in
text/x-shellscript)
do_check shellcheck "$path"
;;
text/x-python)
do_check pylint3 "$path"
do_check pycodestyle "$path"
;;
esac
}
for f in *; do
if [ -f "$f" ] && [ -e "$f" ]; then
examine "$f"
fi
done
exit "$status"