We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a5ee8f commit 07c1270Copy full SHA for 07c1270
lib/Perl/Dist/APPerl.pm
@@ -8,7 +8,7 @@ use File::Path 2.07 qw(make_path remove_tree);
8
use Cwd qw(abs_path getcwd);
9
use Data::Dumper qw(Dumper);
10
use File::Basename qw(basename dirname);
11
-use File::Copy qw(copy move);
+use File::Copy qw(copy move cp);
12
use Env qw(@PATH);
13
use FindBin qw();
14
use Getopt::Long qw(GetOptionsFromArray);
@@ -1068,7 +1068,7 @@ sub Build {
1068
chdir(START_WD) or die "Failed to restore cwd";
1069
my @args = ("$UserProjectConfig->{apperl_output}/$CurAPPerlName/perl.com", $itemconfig->{dest});
1070
print 'cp '.join(' ', @args)."\n";
1071
- copy(@args) or die "copy failed: $!";
+ cp(@args) or die "copy failed: $!";
1072
}
1073
1074
0 commit comments