From 39e48110af32a8d1cee3e6fd92e339581aba0398 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Mon, 2 Aug 2004 00:25:51 +0000 Subject: urpmi --bug error message when the directory exists didn't display the name. Fix by Pascal Terjan. --- urpmi | 4 ++-- 1 file 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"); -- cgit v1.2.1