Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jun 7, 2018
1 parent 61208c4 commit 7333b73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration-tests/parse_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ function parse_dockerfiles() {
stack ghc parseFile.hs --package language-docker
dockerfiles=$(find . -name 'Dockerfile')
for dockerfile in $dockerfiles; do
if [[ "$BLACKLIST" == *$dockerfile* ]]; then
continue;
fi
if [[ "$BLACKLIST" == *$dockerfile* ]]; then
continue;
fi

if ./parseFile "$dockerfile" > /dev/null; then
echo "$dockerfile"
echo "$dockerfile"
else
result="false"
result="false"
fi
done
if [[ ${result} == "false" ]]; then false; fi
Expand Down

0 comments on commit 7333b73

Please sign in to comment.