summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/ProjectCreator.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index 68fabad5..f4977a65 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -4913,7 +4913,7 @@ sub write_output_file {
$different = 0 if (!$self->files_are_different($name, $tmp));
}
else {
- $error = "Unable to open $tmp for output.";
+ $error = "Unable to open $tmp for output: $!";
$status = 0;
last;
}
@@ -4929,7 +4929,7 @@ sub write_output_file {
}
}
else {
- $error = "Unable to open $name for output.";
+ $error = "Unable to open $name for output: $!";
$status = 0;
last;
}
@@ -4953,7 +4953,7 @@ sub write_output_file {
}
}
else {
- $error = "Unable to open $name for output.";
+ $error = "Unable to open $name for output: $!";
$status = 0;
last;
}