Skip to content

Commit 3204e9d

Browse files
committed
Use Rake's sh method instead of shelling out
1 parent 77e31d5 commit 3204e9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Steep::RakeTask.new(:steep)
1919

2020
require "mutant"
2121

22-
desc "Run mutant"
22+
desc "Run mutation tests"
2323
task :mutant do
24-
system(*%w[bundle exec mutant run]) or raise "Mutant task failed"
24+
sh "bundle exec mutant run"
2525
end
2626

2727
desc "Run linters"

0 commit comments

Comments
 (0)