diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-05 12:37:35 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-05 12:37:35 +0000 |
commit | 26f07f6c39fdd3ef7cbff80044fd654b4fdfa882 (patch) | |
tree | 1e99c604bf6186eba0f5604c0821bfb68a2f0514 /perl-install | |
parent | 2ddb7d0c24e31ce4274c6e997ea93d05c9d56424 (diff) | |
download | drakx-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar drakx-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar.gz drakx-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar.bz2 drakx-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.tar.xz drakx-26f07f6c39fdd3ef7cbff80044fd654b4fdfa882.zip |
only die if an error actually happened...
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakups | 2 |
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; }, |