Skip to content

Commit d52789f

Browse files
committed
fix: resolved bug causing pulls to fail
1 parent d423060 commit d52789f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- Reintroduced amend (#425)
2020
- Git operations that import items into IRIS now report output from compilation (#426)
2121
- Double quotes now permissible in commit messages (#433)
22+
- Now creating a `%Stream.GlobalCharacter` where it should instead of non-existant `%Stream.Global` (438)
2223

2324
## [2.4.0] - 2024-07-08
2425

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)