Skip to content
Snippets Groups Projects
Commit 116b82d7 authored by Andy Yates's avatar Andy Yates
Browse files

Make sure our error message gives enough info about what it's doing

parent 7e9052a0
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ sub _process_datafile {
$self->v("\tLinking %s -> %s", $filepath, $target);
$self->v("\tRelative path is %s", $relative_path);
symlink($relative_path, $target) or die "Cannot symbolically link $filepath to $target: $!";
symlink($relative_path, $target) or die "Cannot symbolically link $filepath (${relative_path}) to $target: $!";
}
}
return;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment