Skip to content

Commit 8fae878

Browse files
authored
Merge branch 'main' into fix-609
2 parents d27340b + d97f6ca commit 8fae878

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
@@ -53,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5353
- Fix wording for Git Repo Root Directory (#601)
5454
- Fix Diff View options not applying immediately (#590)
5555
- Cleaned up parsing of command output in Git Web UI (#609)
56+
- Fix TempFolder misspecification (#611)
5657

5758
## [2.6.0] - 2024-10-07
5859

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $Replace(..#Storage,"^SYS","^%SYS")
2424
/// Returns root temp folder
2525
ClassMethod DefaultTemp() As %String
2626
{
27-
set defaultTemp = ##class(%File).Construct($System.Util.ManagerDirectory(),"repo/"_$Namespace)
27+
set defaultTemp = ##class(%File).Construct($System.Util.ManagerDirectory(),"repo/")
2828
try {
2929
set defaultTemp = $Get(@..%SYSNamespaceStorage()@("%defaultTemp"), defaultTemp)
3030
} catch e {

0 commit comments

Comments
 (0)