mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-24 15:07:55 +00:00
parallel: Fixed bug #58802: --results unreliable under Cygwin.
This commit is contained in:
parent
22cc1f06e6
commit
d8f99bf85f
21
src/parallel
21
src/parallel
|
@ -5323,7 +5323,6 @@ sub qqx(@) {
|
|||
# and STDERR ignored
|
||||
# This is needed if the environment contains functions
|
||||
# that /bin/sh does not understand
|
||||
my $PATH = $ENV{'PATH'};
|
||||
my %env;
|
||||
# ssh with ssh-agent needs PATH SSH_AUTH_SOCK SSH_AGENT_PID
|
||||
# ssh with Kerberos needs KRB5CCNAME
|
||||
|
@ -5334,23 +5333,13 @@ sub qqx(@) {
|
|||
local %ENV;
|
||||
%ENV = %env;
|
||||
if($Global::debug) {
|
||||
# && true is to force spawning a shell and not just exec'ing
|
||||
return qx{ @_ && true };
|
||||
} else {
|
||||
if($^O eq "cygwin") {
|
||||
# CygWin does not respect 2>/dev/null
|
||||
# so we do that by hand
|
||||
open my $original_stderr, ">&", "STDERR" or
|
||||
::die_bug("Can't dup STDERR: $!");
|
||||
close STDERR;
|
||||
open(STDERR, ">", "/dev/null");
|
||||
my @ret = qx{ @_ };
|
||||
close STDERR;
|
||||
open STDERR, ">&", $original_stderr or
|
||||
::die_bug("Can't dup STDERR: $!");
|
||||
return wantarray ? @ret : join "",@ret;
|
||||
} else {
|
||||
return qx{ ( @_ ) 2>/dev/null };
|
||||
}
|
||||
local *STDERR;
|
||||
open(STDERR, ">", "/dev/null");
|
||||
# && true is to force spawning a shell and not just exec'ing
|
||||
return qx{ @_ && true };
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue