From 91600ebbc794c0e647843428fd8c1d6878064faf Mon Sep 17 00:00:00 2001 From: isc-vgao Date: Fri, 26 Jan 2024 11:44:56 -0500 Subject: [PATCH] fix for git add CSP application --- cls/SourceControl/Git/Utils.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cls/SourceControl/Git/Utils.cls b/cls/SourceControl/Git/Utils.cls index 933d5bcb..ce66781d 100644 --- a/cls/SourceControl/Git/Utils.cls +++ b/cls/SourceControl/Git/Utils.cls @@ -985,7 +985,7 @@ ClassMethod NormalizeInternalName(ByRef name As %String) As %String set type = ..Type(.name) - if $extract(name) '= "/" { + if ($extract(name) '= "/") && (type'="csp") { quit $piece(name,".",1,*-1)_"."_$zconvert($piece(name,".",*),"U") }