summaryrefslogtreecommitdiffstats
path: root/move/move.pm
diff options
context:
space:
mode:
Diffstat (limited to 'move/move.pm')
-rw-r--r--move/move.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/move/move.pm b/move/move.pm
index a31638c68..d959626fe 100644
--- a/move/move.pm
+++ b/move/move.pm
@@ -37,7 +37,10 @@ sub handle_etcfiles {
m|^# (\S+)| and $mode = $1;
m|^/| && member($mode, @allowed_modes) and do {
$mode eq 'READ' && !-e $_ and symlinkf_short("/image$_", $_);
- $mode eq 'OVERWRITE' and system("cp /image$_ $_"); #- need copy contents
+ if ($mode eq 'OVERWRITE') {
+ mkdir_p(dirname($_));
+ system("cp /image$_ $_"); #- need copy contents
+ }
$mode eq 'DIR' and mkdir_p $_;
}
}