summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MDK/Common/File.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/MDK/Common/File.pm b/MDK/Common/File.pm
index f73a99c..3e28689 100644
--- a/MDK/Common/File.pm
+++ b/MDK/Common/File.pm
@@ -174,13 +174,13 @@ sub cp_with_option {
unlink $dest;
- if (-d $src) {
- -d $dest or mkdir $dest, (stat($src))[2] or die "mkdir: can't create directory $dest: $!\n";
- cp_af(glob_($src), $dest);
- } elsif (-l $src && $keep_special) {
+ if (-l $src && $keep_special) {
unless (symlink(readlink($src) || die("readlink failed: $!"), $dest)) {
warn "symlink: can't create symlink $dest: $!\n";
}
+ } elsif (-d $src) {
+ -d $dest or mkdir $dest, (stat($src))[2] or die "mkdir: can't create directory $dest: $!\n";
+ cp_af(glob_($src), $dest);
} elsif ((-b $src || -c $src) && $keep_special) {
my @stat = stat($src);
require MDK::Common::System;