diff options
| author | Stan Hu <stanhu@gmail.com> | 2018-12-13 10:23:17 +0000 |
|---|---|---|
| committer | Douwe Maan <douwe@gitlab.com> | 2018-12-13 10:23:17 +0000 |
| commit | 46e81d93ff74a98cf4f02735d310ee4417be0217 (patch) | |
| tree | c3db905b0890895303b2f1ca91f3ac02664ce48a /lib/action | |
| parent | 528960c801aed81a977e7ce58a9706b4ea32ab4a (diff) | |
| download | gitlab-shell-46e81d93ff74a98cf4f02735d310ee4417be0217.tar.gz | |
Upgrade to Ruby 2.5.3
Diffstat (limited to 'lib/action')
| -rw-r--r-- | lib/action/custom.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/action/custom.rb b/lib/action/custom.rb index a2f3d59..3382e83 100644 --- a/lib/action/custom.rb +++ b/lib/action/custom.rb @@ -96,12 +96,13 @@ module Action def print_flush(str) return false unless str + $stdout.print(Base64.decode64(str)) $stdout.flush end def inform_client(str) - $stderr.puts(format_gitlab_output(str)) + warn(format_gitlab_output(str)) end def format_gitlab_output(str) |
