Skip to content

Commit ed19c80

Browse files
committed
fix: PTD items should not be compiled
1 parent ebc44c0 commit ed19c80

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cls/SourceControl/Git/PullEventHandler/IncrementalLoad.cls

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ Method OnPull() As %Status
2424
write !, "WARNING: Deletion of ", ..ModifiedFiles(i).externalName, " failed."
2525
}
2626
} else {
27-
set compilelist(internalName) = ""
27+
if (##class(SourceControl.Git.Utils).Type(internalName) '= "ptd") {
28+
set compilelist(internalName) = ""
29+
}
2830
set nFiles = nFiles + 1
2931
set sc = $$$ADDSC(sc,##class(SourceControl.Git.Utils).ImportItem(internalName, 1))
3032
}

0 commit comments

Comments
 (0)