summaryrefslogtreecommitdiffstats
path: root/urpmi
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-08-02 00:25:51 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-08-02 00:25:51 +0000
commit39e48110af32a8d1cee3e6fd92e339581aba0398 (patch)
treea996c6d779ac0e2b3564d4d84ece1b6d6fac79f0 /urpmi
parentb020a09ed6f0e81c12f190674e0ecca8a90e6b97 (diff)
downloadurpmi-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.
Diffstat (limited to 'urpmi')
-rwxr-xr-xurpmi4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpmi b/urpmi
index 32e6e682..0fb0f121 100755
--- a/urpmi
+++ b/urpmi
@@ -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");