diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-10-08 14:36:55 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-10-08 14:36:55 +0300 |
commit | 1ee589fbb51eb2720f9fffcba685920301aba552 (patch) | |
tree | 60e94b4918f561f416bd72d12c2d3494015e7e67 /lib | |
parent | 9fceda6743bdd016020c96c189e8b357ebad8987 (diff) | |
download | gitlab-ci-1ee589fbb51eb2720f9fffcba685920301aba552.tar.gz |
Fix invalid method
Diffstat (limited to 'lib')
-rw-r--r-- | lib/runner.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/runner.rb b/lib/runner.rb index bb76a2a..d4156c8 100644 --- a/lib/runner.rb +++ b/lib/runner.rb @@ -21,7 +21,7 @@ class Runner Dir.chdir(path) do commands.each_line do |line| unless command(line, path) - build.failed! + build.fail! end end end |