summaryrefslogtreecommitdiffstats
path: root/rescue/run-rescue-locally
diff options
context:
space:
mode:
Diffstat (limited to 'rescue/run-rescue-locally')
-rwxr-xr-xrescue/run-rescue-locally2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/run-rescue-locally b/rescue/run-rescue-locally
index d814ed5f..33191e7a 100755
--- a/rescue/run-rescue-locally
+++ b/rescue/run-rescue-locally
@@ -35,7 +35,7 @@ my $path = $0;
# Follow symlinks until we get to the real file
while(-l $path) {
- my $link = readlink($path);
+ my $link = readlink($path) or die "readlink: $path: $!";
if(File::Spec->file_name_is_absolute($link)) {
$path = $link;
} else {