Skip to content

Commit 9718793

Browse files
committed
compile items on import
1 parent 6f39ea8 commit 9718793

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
@@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323
### Fixed
2424
- Modifications to local repo files are now synced with IRIS (#153)
2525
- Menu items names are properly translated from internal name in VSCode, Management Portal (#372)
26+
- Import All options now compile items after they are imported into IRIS from the repository (#362)
2627

2728
## [2.3.1] - 2024-04-30
2829

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ ClassMethod ImportItem(InternalName As %String, force As %Boolean = 0, verbose A
11871187
if ($extract(InternalName, 1) = "/"){
11881188
set sc = ..ImportCSPFile(InternalName)
11891189
} else{
1190-
set sc = $system.OBJ.Load(filename,"-l-d")
1190+
set sc = $system.OBJ.Load(filename,"ck")
11911191
}
11921192
}
11931193
if sc {

0 commit comments

Comments
 (0)