Skip to content

Commit d97f6ca

Browse files
authored
Merge pull request #612 from intersystems/issue-611
Fix tempfolder
2 parents 3132b05 + d67cf1d commit d97f6ca

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
@@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5252
- Fix creating new branch from Git Web UI (#591)
5353
- Fix wording for Git Repo Root Directory (#601)
5454
- Fix Diff View options not applying immediately (#590)
55+
- Fix TempFolder misspecification (#611)
5556

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

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)