Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unixism by switching to Shell::Command for rm_rf
  • Loading branch information
Geoffrey Broadwell committed Nov 19, 2012
1 parent 7f84c9c commit b47060b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bench
Expand Up @@ -4,6 +4,7 @@

use v6;
use JSON::Tiny;
use Shell::Command;


# Reduce directory insanity a bit by changing to bench root
Expand Down Expand Up @@ -202,7 +203,7 @@ sub needs-setup ($action) {
sub rmtree ($dir, :$noisy = True) {
return unless $dir.IO.d;
say "Removing $dir" if $noisy;
run < rm -rf >, $dir;
rm_rf $dir;
}

#= Expand a partially-specified list of components and checkouts
Expand Down

0 comments on commit b47060b

Please sign in to comment.