diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-21 19:34:33 +0000 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-21 19:34:33 +0000 |
| commit | 586c8d515c866c2e7e947e4e50a8b6cf314f05a9 (patch) | |
| tree | a5839d5897c2238fda80f1ac803a1369856f4761 | |
| parent | 8d84906bd0522604d2858b0d5d0971eda12e9c01 (diff) | |
| parent | ca2f13090c73e1c59a6a7d801253b2700a41c295 (diff) | |
| download | gitlab-shell-586c8d515c866c2e7e947e4e50a8b6cf314f05a9.tar.gz | |
Merge branch 'fail_install' of /home/git/repositories/gitlab/gitlab-shell
| -rwxr-xr-x | bin/install | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/install b/bin/install index f8c12f8..c55d0da 100755 --- a/bin/install +++ b/bin/install @@ -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 |
