Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #80 from mdsol/fix_failed_command_abort_message_in…
Browse files Browse the repository at this point in the history
…_ci_run
  • Loading branch information
ykitamura-mdsol authored Jan 13, 2022
2 parents a42fcf0 + 81f5880 commit f39ea73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.6.2
* Prevent obscure error message (undefined method) when ci:run task aborts

# 0.6.1
* Fix for the ci:run task (when used individually) to abort after test failures.

Expand Down
2 changes: 1 addition & 1 deletion lib/kender/tasks/ci.rake
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace :ci do
Kender::Command.all.each do |command|
puts "#{command.name} failed" unless command.success
end
abort "Command failed: #{command}" unless Kender::Command.all_success?
abort "Command(s) failed" unless Kender::Command.all_success?
end


Expand Down
2 changes: 1 addition & 1 deletion lib/kender/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Kender
VERSION = '0.6.1'.freeze
VERSION = '0.6.2'.freeze
end

0 comments on commit f39ea73

Please sign in to comment.