diff options
author | Seth Daniel <seth@sethdaniel.org> | 2024-04-03 15:26:50 -0500 |
---|---|---|
committer | Seth Daniel <seth@sethdaniel.org> | 2024-04-03 15:26:50 -0500 |
commit | fdecca683296e554b75a1db169884248a3b5ea07 (patch) | |
tree | a782b9352c9b12b0f13fe3b307d6f8efc80102f6 | |
parent | 1f3e38e74277f1f95b6a4a10012a71eb9826b109 (diff) | |
download | PerlNavigator-fdecca683296e554b75a1db169884248a3b5ea07.zip |
do not write to STDERR
-rwxr-xr-x | server/src/perl/perlimportsWrapper.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/perl/perlimportsWrapper.pl b/server/src/perl/perlimportsWrapper.pl index 7f34f5a..cac0a90 100755 --- a/server/src/perl/perlimportsWrapper.pl +++ b/server/src/perl/perlimportsWrapper.pl @@ -33,7 +33,7 @@ try { $exit_code = App::perlimports::CLI->new->run; } catch { - print STDERR $_; + print $_; $exit_code = 1; }; |