fix the bash array loop

This commit is contained in:
antiochp
2017-12-20 15:37:23 -05:00
parent 6ff4b41f2e
commit 121cce7e51
+1 -1
View File
@@ -38,7 +38,7 @@ if [ $result != 0 ]; then
printf "\033[0;31mfail\033[0m \n"
printf "[pre_commit] the following files need formatting: \n"
for file in $problem_files; do
for file in ${problem_files[@]}; do
printf " cargo +nightly fmt -- $file\n"
done
else