Fix conditions.

This commit is contained in:
Guo Xiang Tan 2017-08-18 12:46:21 +09:00
parent 8ecf383c55
commit 8e8653a300
1 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@ unless ENV['NO_UPDATE']
run_or_fail("bundle")
end
run_or_fail("bundle exec rake docker:lint") unless ENV["SKIP_LINT"]
run_or_fail("bundle exec rake docker:test") unless ENV["LINT_ONLY"]
run_or_fail("bundle exec rake docker:lint") if !ENV["SKIP_LINT"]
run_or_fail("bundle exec rake docker:test") if !ENV["LINT_ONLY"]