-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_rustfmt_hook.sh
executable file
·38 lines (34 loc) · 1.08 KB
/
add_rustfmt_hook.sh
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
#!/bin/sh
# check that rustfmt installed, or else this hook doesn't make much sense
command -v rustfmt >/dev/null 2>&1 || { echo >&2 "Rustfmt is required but it's not installed. Aborting."; exit 1; }
# write a whole script to pre-commit hook
# NOTE: it will overwrite pre-commit file!
cat > .git/hooks/pre-commit <<'EOF'
#!/bin/bash -e
declare -a rust_files=()
files=$(git diff-index --name-only HEAD)
echo 'Formatting source files'
for file in $files; do
if [ ! -f "${file}" ]; then
continue
fi
if [[ "${file}" == *.rs ]]; then
rust_files+=("${file}")
fi
done
if [ ${#rust_files[@]} -ne 0 ]; then
git stash push -kuqm "before rustfmt hook"
command -v rustfmt >/dev/null 2>&1 || { echo >&2 "Rustfmt is required but it's not installed. Aborting."; exit 1; }
$(command -v rustfmt) ${rust_files[@]} &
fi
wait
if [ ${#rust_files[@]} -ne 0 ]; then
git add ${rust_files[@]}
echo "Formatting done, changed files: ${rust_files[@]}"
git stash pop -q
else
echo "No changes, formatting skipped"
fi
EOF
chmod +x .git/hooks/pre-commit
echo "Hooks updated"