Commit 586c8d51 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'fail_install' of /home/git/repositories/gitlab/gitlab-shell

parents 8d84906b ca2f1309
......@@ -20,7 +20,13 @@ commands = [
]
commands.each do |cmd|
puts "#{cmd}: #{system(cmd)}"
print "#{cmd}: "
if system(cmd)
puts 'OK'
else
puts 'Failed'
abort "#{$PROGRAM_NAME} failed"
end
end
exit
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment