summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-03-14 17:48:37 +0100
committerJacob Vosmaer <jacob@gitlab.com>2017-03-21 14:55:41 +0100
commit49a9c2fbefde96e428eae72a76ceefeac9dbcad4 (patch)
treec245a2081eb2d80543fa0677c084b145c67d5c14 /lib/tasks
parent3883a5f906742dd6cf6cccec47b495c661ec7b01 (diff)
downloadgitlab-ce-49a9c2fbefde96e428eae72a76ceefeac9dbcad4.tar.gz
Print command output when a task failed
This helps you understand why the command failed.
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/gitlab/task_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/task_helpers.rb b/lib/tasks/gitlab/task_helpers.rb
index bb755ae689b..cdba2262bc2 100644
--- a/lib/tasks/gitlab/task_helpers.rb
+++ b/lib/tasks/gitlab/task_helpers.rb
@@ -81,7 +81,7 @@ module Gitlab
def run_command!(command)
output, status = Gitlab::Popen.popen(command)
- raise Gitlab::TaskFailedError unless status.zero?
+ raise Gitlab::TaskFailedError.new(output) unless status.zero?
output
end