diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-16 18:59:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-16 18:59:30 +0000 |
commit | 948a8014086f8370e47439947122644c64578d65 (patch) | |
tree | fa3ab7944f69940c8af60a3e9f0717be38f6afea | |
parent | 7e35fa33f9c8bdaded1a9f1bfdb086283d909bf3 (diff) | |
download | drakx-backup-do-not-use-948a8014086f8370e47439947122644c64578d65.tar drakx-backup-do-not-use-948a8014086f8370e47439947122644c64578d65.tar.gz drakx-backup-do-not-use-948a8014086f8370e47439947122644c64578d65.tar.bz2 drakx-backup-do-not-use-948a8014086f8370e47439947122644c64578d65.tar.xz drakx-backup-do-not-use-948a8014086f8370e47439947122644c64578d65.zip |
do not trash error messages if testing
-rw-r--r-- | perl-install/interactive_newt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive_newt.pm b/perl-install/interactive_newt.pm index abdb09503..b5b167fb3 100644 --- a/perl-install/interactive_newt.pm +++ b/perl-install/interactive_newt.pm @@ -19,7 +19,7 @@ sub new() { Newt::Cls; Newt::SetSuspendCallback; ($width, $height) = Newt::GetScreenSize; - open STDERR,">/dev/null" if $::isStandalone; + open STDERR,">/dev/null" if $::isStandalone && !$::testing; bless {}, $_[0]; } |