Skip to content

Commit

Permalink
Fix file patter for indent script
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Bock <nicolasbock@gmail.com>
  • Loading branch information
nicolasbock committed Aug 16, 2019
1 parent d258ff5 commit c2640a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ if (( $# > 0 )); then
esac
done
else
readarray -t C_FILES < <(git ls-files -- *.c *.h)
readarray -t FORTRAN_FILES < <(git ls-files -- *.F90)
readarray -t C_FILES < <(git ls-files -- '*.c' '*.h')
readarray -t FORTRAN_FILES < <(git ls-files -- '*.F90')
fi

for f in "${C_FILES[@]}" "${FORTRAN_FILES[@]}"; do
Expand Down

0 comments on commit c2640a9

Please sign in to comment.