diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-03-14 17:48:37 +0100 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-03-21 14:55:41 +0100 |
commit | 49a9c2fbefde96e428eae72a76ceefeac9dbcad4 (patch) | |
tree | c245a2081eb2d80543fa0677c084b145c67d5c14 /lib/tasks/gitlab | |
parent | 3883a5f906742dd6cf6cccec47b495c661ec7b01 (diff) | |
download | gitlab-ce-49a9c2fbefde96e428eae72a76ceefeac9dbcad4.tar.gz |
Print command output when a task failed
This helps you understand why the command failed.
Diffstat (limited to 'lib/tasks/gitlab')
-rw-r--r-- | lib/tasks/gitlab/task_helpers.rb | 2 |
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 |