summaryrefslogtreecommitdiff
path: root/make/console.pm
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2016-03-22 22:14:35 +0000
committerPeter Powell <petpow@saberuk.com>2016-03-22 23:38:37 +0000
commit7c31c005fced1cad45b19c7e9d5c3f294a80281a (patch)
tree1865aff5226ae961d6d71dd24cca5c0d0aee940e /make/console.pm
parent55ad0595a714dcf07e94fe2fafc790c0be7a85a1 (diff)
Extract directory creation code to its own subroutine.
Diffstat (limited to 'make/console.pm')
-rw-r--r--make/console.pm8
1 files changed, 2 insertions, 6 deletions
diff --git a/make/console.pm b/make/console.pm
index 4e7b32d49..621de0274 100644
--- a/make/console.pm
+++ b/make/console.pm
@@ -88,12 +88,8 @@ sub prompt_dir($$$;$) {
$answer = rel2abs(prompt_string($interactive, $question, $default));
$create = prompt_bool($interactive && !-d $answer, "$answer does not exist. Create it?", 'y');
if ($create && $create_now) {
- my $mkpath = eval {
- mkpath($answer, 0, 0750);
- return 1;
- };
- unless (defined $mkpath) {
- print_warning "unable to create $answer!\n";
+ unless (create_directory $answer, 0750) {
+ print_warning "unable to create $answer: $!\n";
$create = 0;
}
}