Skip to content

Commit d632b42

Browse files
committed
Don't actually need /SHELL
1 parent 015d1d1 commit d632b42

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cls/SourceControl/Git/Utils.cls

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ ClassMethod RunGitCommandWithInput(command As %String, inFile As %String = "", O
11071107
set outLog = ##class(%Library.File).TempFilename()
11081108
set errLog = ##class(%Library.File).TempFilename()
11091109

1110-
set returnCode = $zf(-100,"/SHELL /STDOUT="_$$$QUOTE(outLog)_" /STDERR="_$$$QUOTE(errLog)_$Case(inFile, "":"", :" /STDIN="_inFile),"git",newArgs...)
1110+
set returnCode = $zf(-100,"/STDOUT="_$$$QUOTE(outLog)_" /STDERR="_$$$QUOTE(errLog)_$Case(inFile, "":"", :" /STDIN="_inFile),"git",newArgs...)
11111111

11121112
set errStream = ##class(%Stream.FileCharacter).%OpenId(errLog,,.sc)
11131113
set outStream = ##class(%Stream.FileCharacter).%OpenId(outLog,,.sc)
@@ -1301,3 +1301,4 @@ ClassMethod NameToInternalName(Name, IgnorePercent = 1, IgnoreNonexistent = 1) A
13011301
}
13021302

13031303
}
1304+

0 commit comments

Comments
 (0)