Skip to content

Commit 52e3036

Browse files
authored
Merge pull request #440 from intersystems/fix-stream-pull-bug
Resolved bug causing pulls to fail
2 parents d423060 + 60ea059 commit 52e3036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1786,7 +1786,7 @@ ClassMethod RunGitCommandWithInput(command As %String, inFile As %String = "", O
17861786
set buffer = ##class(SourceControl.Git.Util.Buffer).%New()
17871787
do buffer.BeginCaptureOutput()
17881788
set st = ..SyncIrisWithRepoThroughCommand(.outStream)
1789-
set out = ##class(%Stream.Global).%New()
1789+
set out = ##class(%Stream.GlobalCharacter).%New()
17901790
do buffer.EndCaptureOutput(.out)
17911791
if $$$ISOK(st) {
17921792
while 'out.AtEnd {

0 commit comments

Comments
 (0)