Skip to content

Commit 559ff38

Browse files
Updating dependencies
1 parent f4c93aa commit 559ff38

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

Src/runcpp2/PipelineSteps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace
4343
return false;
4444
}
4545

46-
result = System2GetCommandReturnValueSync(&runCommandInfo, &returnStatus);
46+
result = System2GetCommandReturnValueSync(&runCommandInfo, &returnStatus, false);
4747
if(result != SYSTEM2_RESULT_SUCCESS)
4848
{
4949
ssLOG_ERROR("System2GetCommandReturnValueSync failed with result: " << result);

Src/runcpp2/PlatformUtil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ bool runcpp2::RunCommandAndGetOutput( const std::string& command,
113113
}
114114
while(sys2Result == SYSTEM2_RESULT_READ_NOT_FINISHED);
115115

116-
sys2Result = System2GetCommandReturnValueSync(&commandInfo, &outReturnCode);
116+
sys2Result = System2GetCommandReturnValueSync(&commandInfo, &outReturnCode, false);
117117
if(sys2Result != SYSTEM2_RESULT_SUCCESS)
118118
{
119119
ssLOG_ERROR("System2GetCommandReturnValueSync failed with result: " << sys2Result);

TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ TODO:
1414
- Separate git and local source options
1515
- Add branch/tag option for git
1616
- Add initialize submodule option for git
17+
- Use System2 subprocess if no prepend commands to be safer
1718
- Record last script info write time for `ParseAndValidateScriptInfo()`
1819
- Migrate to libyaml
1920
- Add wildcard support for filenames and extensions

0 commit comments

Comments
 (0)