diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-08-02 00:25:51 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-08-02 00:25:51 +0000 |
commit | 39e48110af32a8d1cee3e6fd92e339581aba0398 (patch) | |
tree | a996c6d779ac0e2b3564d4d84ece1b6d6fac79f0 | |
parent | b020a09ed6f0e81c12f190674e0ecca8a90e6b97 (diff) | |
download | urpmi-39e48110af32a8d1cee3e6fd92e339581aba0398.tar urpmi-39e48110af32a8d1cee3e6fd92e339581aba0398.tar.gz urpmi-39e48110af32a8d1cee3e6fd92e339581aba0398.tar.bz2 urpmi-39e48110af32a8d1cee3e6fd92e339581aba0398.tar.xz urpmi-39e48110af32a8d1cee3e6fd92e339581aba0398.zip |
urpmi --bug error message when the directory exists didn't display the name.
Fix by Pascal Terjan.
-rwxr-xr-x | urpmi | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -236,8 +236,8 @@ You may prefer to just save it. What is your choice?", $files[0]), my $bug = $urpm::args::options{bug}; if ($bug) { mkdir $bug or $urpm->{fatal}(8, (-d $bug - ? N("Directory [%s] already exists, please use another directory for bug report or delete it") - : N("Unable to create directory [%s] for bug report"), $bug)); + ? N("Directory [%s] already exists, please use another directory for bug report or delete it", $bug) + : N("Unable to create directory [%s] for bug report", $bug))); #- copy all synthesis file used, along with configuration of urpmi system("cp", "-af", $urpm->{skiplist}, $urpm->{instlist}, $bug) and die N("Copying failed"); |