Skip to content

Commit

Permalink
Remove obsolete :test parameter from indir()
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 5, 2015
1 parent 109a680 commit e876378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/io_operators.pm
Expand Up @@ -233,7 +233,7 @@ sub chdir($path as Str) {
$*CWD = $newCWD;
}

sub indir($path as Str, $what, :$test = <r w>) {
sub indir($path as Str, $what) {
my $newCWD := CHANGE-DIRECTORY($path,$*CWD.Str,&FILETEST-RWX);
$newCWD // $newCWD.throw;

Expand Down

0 comments on commit e876378

Please sign in to comment.