Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Sep 24, 2018
1 parent 0003d01 commit e50b738
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ files=( $(validate_diff --name-only -- '*Dockerfile') )
unset IFS

# build the changed dockerfiles
for f in "${files[@]}"; do
# shellcheck disable=SC2068
for f in ${files[@]}; do
if ! [[ -e "$f" ]]; then
continue
fi
Expand Down

0 comments on commit e50b738

Please sign in to comment.