Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-09-24 19:54:24 -04:00
parent 0003d0146c
commit e50b738c5f
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -29,7 +29,8 @@ files=( $(validate_diff --name-only -- '*Dockerfile') )
unset IFS unset IFS
# build the changed dockerfiles # build the changed dockerfiles
for f in "${files[@]}"; do # shellcheck disable=SC2068
for f in ${files[@]}; do
if ! [[ -e "$f" ]]; then if ! [[ -e "$f" ]]; then
continue continue
fi fi