diff options
author | Pascal Terjan <pterjan@mageia.org> | 2024-12-20 19:33:11 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2024-12-20 19:33:11 +0000 |
commit | 72463db81d937c8aab0cccddbd721b7d40b22b9b (patch) | |
tree | d834bc113f55bf42684f3f6f547da5fe35dc577d /iurt_root_command | |
parent | de9d7e923650405fc8de7416f2c7a974c96ad62f (diff) | |
download | iurt-72463db81d937c8aab0cccddbd721b7d40b22b9b.tar iurt-72463db81d937c8aab0cccddbd721b7d40b22b9b.tar.gz iurt-72463db81d937c8aab0cccddbd721b7d40b22b9b.tar.bz2 iurt-72463db81d937c8aab0cccddbd721b7d40b22b9b.tar.xz iurt-72463db81d937c8aab0cccddbd721b7d40b22b9b.zip |
Use File::Copy instead of deprecated File::NCopy
Diffstat (limited to 'iurt_root_command')
-rwxr-xr-x | iurt_root_command | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iurt_root_command b/iurt_root_command index e64b1f7..fa9a13d 100755 --- a/iurt_root_command +++ b/iurt_root_command @@ -24,7 +24,7 @@ use strict; my $program_name = 'iurt_root_command'; use Mkcd::Commandline qw(parseCommandLine usage); use MDK::Common qw(any if_); -use File::NCopy qw(copy); +use File::Copy qw(copy); use Iurt::Util qw(plog_init plog); use Cwd 'realpath'; use File::Path qw(make_path); |