mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 17:51:16 +08:00
Fix conditions.
This commit is contained in:
@ -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"]
|
||||
|
Reference in New Issue
Block a user