mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Diagnostics
- Redirected STDERR into STDOUT to eliminate stray output.
This commit is contained in:
parent
18e9f6e8ec
commit
f74bed4355
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ void handleDiagnostics (std::string& outs)
|
|||
<< "\n";
|
||||
}
|
||||
|
||||
if ((fp = popen ("rsync --version", "r")))
|
||||
if ((fp = popen ("rsync --version 2>&1", "r")))
|
||||
{
|
||||
fgets (buffer, 1023, fp);
|
||||
pclose (fp);
|
||||
|
@ -224,7 +224,7 @@ void handleDiagnostics (std::string& outs)
|
|||
<< "\n";
|
||||
}
|
||||
|
||||
if ((fp = popen ("curl --version", "r")))
|
||||
if ((fp = popen ("curl --version 2>&1", "r")))
|
||||
{
|
||||
fgets (buffer, 1023, fp);
|
||||
pclose (fp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue