Skip to content

Commit

Permalink
Fix debug task
Browse files Browse the repository at this point in the history
  • Loading branch information
JonRowe committed Oct 14, 2023
1 parent 7fcb9c8 commit b71e7d0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ namespace :smoke do
task app: ["clobber:app", "generate:app", "generate:stuff", :smoke]

desc "run in the example app"
task({ run: ["clobber:app", "generate:app", "generate:stuff"] }, [:cmd]) do |_t, args|
task :run, [:cmd] do |_t, args|
unless ENV['SKIP_GENERATE']
["clobber:app", "generate:app", "generate:stuff"].map { |task| Rake::Task[task].invoke }
end

in_example_app args.cmd.to_s
end

Expand Down

0 comments on commit b71e7d0

Please sign in to comment.