voxpupuli / metadata-json-lint

Tool to check the validity of Puppet metadata.json files
Apache License 2.0
30 stars 27 forks source link

Post latest release grouped rake tasks exits after running metadata_lint task. #70

Closed shaheed121 closed 7 years ago

shaheed121 commented 7 years ago

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
luyseyal commented 7 years ago

We also have this issue. Hoping you can prioritize a release. We've pinned to 1.1.0 in the meantime.

davidmogar commented 7 years ago

When are you releasing a new version with this patch?

domcleal commented 7 years ago

I've opened a PR to issue a release at #73.