Skip to content

Commit

Permalink
make current link failure non-fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
TimToady committed Nov 4, 2015
1 parent e5e6185 commit d3534eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-scripts/rebuild-rakudo-jvm.pl
Expand Up @@ -27,7 +27,7 @@
}

my $now = readlink $link;
my $other = $swap{$now};
my $other = $swap{$now} // $dir[0];

say "Other: '$other'";
my $source_dir = $other;
Expand Down
2 changes: 1 addition & 1 deletion build-scripts/rebuild-rakudo-moar.pl
Expand Up @@ -27,7 +27,7 @@
}

my $now = readlink $link;
my $other = $swap{$now};
my $other = $swap{$now} // $dir[0];

say "Other: '$other'";
my $source_dir = $other;
Expand Down

0 comments on commit d3534eb

Please sign in to comment.