summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakups
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-05 12:37:35 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-05 12:37:35 +0000
commit26f07f6c39fdd3ef7cbff80044fd654b4fdfa882 (patch)
tree1e99c604bf6186eba0f5604c0821bfb68a2f0514 /perl-install/standalone/drakups
parent2ddb7d0c24e31ce4274c6e997ea93d05c9d56424 (diff)
downloaddrakx-backup-do-not-use-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar
drakx-backup-do-not-use-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar.gz
drakx-backup-do-not-use-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar.bz2
drakx-backup-do-not-use-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar.xz
drakx-backup-do-not-use-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.zip
only die if an error actually happened...
Diffstat (limited to 'perl-install/standalone/drakups')
-rwxr-xr-xperl-install/standalone/drakups2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakups b/perl-install/standalone/drakups
index 969ee7b30..169564cd3 100755
--- a/perl-install/standalone/drakups
+++ b/perl-install/standalone/drakups
@@ -252,7 +252,7 @@ my @pages = (
add => sub {
eval { add_device_wizard($in, $struct) };
my $err = $@;
- die $err if $err !~ /wizcancel/;
+ die $err if $err && $err !~ /wizcancel/;
$::WizardWindow->destroy if defined $::WizardWindow;
undef $::WizardWindow;
},