You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the latest update grouped rake tasks exit just after running metadata_lint task without any error. In the case below rake validation task exits just after running metadata_lint without running the syntax task.
desc 'Validate json hieradata'
JsonLint::RakeTask.new do |task|
task.paths = ['data/**/*.json']
end
desc 'validation'
task :validation do
Rake::Task[:jsonlint].invoke
Rake::Task[:metadata_lint].invoke
Rake::Task[:syntax].invoke
end
The text was updated successfully, but these errors were encountered:
shaheed121
changed the title
Grouped rake tasks exits after running metadata_lint
Post latest release grouped rake tasks exits after running metadata_lint task.
Jun 1, 2017
On success, no exit(0) call is made from a rake task, allowing execution
to continue to further tasks. exit() calls are now only made when used
in CLI mode.
Fixesvoxpupuli#70
After the latest update grouped rake tasks exit just after running metadata_lint task without any error. In the case below
rake validation
task exits just after running metadata_lint without running the syntax task.The text was updated successfully, but these errors were encountered: