summaryrefslogtreecommitdiffstats
path: root/perl-install/network/adsl.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/network/adsl.pm')
-rw-r--r--perl-install/network/adsl.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm
index a576ccef8..2cb691fa9 100644
--- a/perl-install/network/adsl.pm
+++ b/perl-install/network/adsl.pm
@@ -127,11 +127,12 @@ sub load_firmware_floppy {
my $_b = before_leaving { fs::umount("/mnt") };
if (-e "/mnt/$file") {
- cp_af("/mnt/$file $destination");
+ cp_af("/mnt/$file", $destination);
} else { $failed ||= N("Firmware copy failed, file %s not found", $file) }
eval { $in->ask_warn('', $failed || N("Firmware copy succeeded")) }; $in->exit if $@ =~ /wizcancel/;
- $failed and log::l($failed) && return;
+ log::explanations($failed || "Firmware copy $file in $destination succeeded");
+ $failed and return;
1;
}