Skip to content

Commit d3534eb

Browse files
committed
make current link failure non-fatal
1 parent e5e6185 commit d3534eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build-scripts/rebuild-rakudo-jvm.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828

2929
my $now = readlink $link;
30-
my $other = $swap{$now};
30+
my $other = $swap{$now} // $dir[0];
3131

3232
say "Other: '$other'";
3333
my $source_dir = $other;

build-scripts/rebuild-rakudo-moar.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828

2929
my $now = readlink $link;
30-
my $other = $swap{$now};
30+
my $other = $swap{$now} // $dir[0];
3131

3232
say "Other: '$other'";
3333
my $source_dir = $other;

0 commit comments

Comments
 (0)