Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-09-28 20:43:07 +0300
committerAndrew Newdigate <andrew@gitlab.com>2017-09-28 20:43:07 +0300
commit91a3e2fcde7eede443035654d3a2e9d84eb23bc3 (patch)
tree9349018ec8b0853f2f10511daa4524d179a81a22 /_support/run.rb
parenteae90642171aeedf5c10a51c9e7c6977ce01a731 (diff)
Use gitlab-styles
Diffstat (limited to '_support/run.rb')
-rw-r--r--_support/run.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/_support/run.rb b/_support/run.rb
index 121729b32..f6d84829a 100644
--- a/_support/run.rb
+++ b/_support/run.rb
@@ -1,6 +1,6 @@
def run!(cmd, chdir='.')
GitalySupport.print_cmd(cmd)
- if !system(*cmd, chdir: chdir)
+ unless system(*cmd, chdir: chdir)
GitalySupport.fail_cmd!(cmd)
end
end