Fix test.rake

This commit is contained in:
Dmitriy Zaporozhets 2014-05-26 20:30:45 +00:00
parent e426d43924
commit c9020ae586
1 changed files with 2 additions and 3 deletions

View File

@ -8,8 +8,7 @@ namespace :gitlab do
]
cmds.each do |cmd|
system({'RAILS_ENV' => 'test', 'force' => 'yes'}, *cmd) ||
raise "#{cmd} failed!"
system({'RAILS_ENV' => 'test', 'force' => 'yes'}, *cmd) or raise("#{cmd} failed!")
end
end
end
end