Format shell scripts with shfmt

This commit is contained in:
2020-05-23 21:36:17 +01:00
parent a34e2d370e
commit cdef65ae53
30 changed files with 219 additions and 211 deletions

View File

@@ -10,7 +10,7 @@ main() {
commits="$(git rev-list "$ref")"
for commit in $commits; do
files="$(git diff-tree --no-commit-id --name-only -r $commit)"
files="$(git diff-tree --no-commit-id --name-only -r "$commit")"
for file in $files; do
echo "${commit}: $file"
done