We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bd650c4 + 5b56a43 commit 3f4317aCopy full SHA for 3f4317a
CHANGELOG.md
@@ -54,6 +54,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
54
- Fix Diff View options not applying immediately (#590)
55
- Cleaned up parsing of command output in Git Web UI (#609)
56
- Fix TempFolder misspecification (#611)
57
+- Fix deleting files on import all (#618)
58
59
## [2.6.0] - 2024-10-07
60
cls/SourceControl/Git/PullEventHandler/IncrementalLoad.cls
@@ -73,6 +73,8 @@ Method DeleteFile(item As %String) As %Status
73
set sc = $$$OK
74
}
75
76
+ // Force the catch if failing
77
+ $$$ThrowOnError(sc)
78
} catch e {
79
set filename = ##class(SourceControl.Git.Utils).FullExternalName(item)
80
if '##class(%File).Exists(filename) {
0 commit comments