Skip to content

Commit 6a5be67

Browse files
committed
compile items on import
1 parent 8d41e1c commit 6a5be67

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- Added a new "Branch" parameter to `##class(SourceControl.Git.PullEventHandler)` (#351)
1919
- Command-line utility to do a baseline export of items in a namespace
2020

21+
### Fixed
22+
- Import All options now compile items after they are imported into IRIS from the repository (#362)
2123

2224
## [2.3.1] - 2024-04-30
2325

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ ClassMethod ImportItem(InternalName As %String, force As %Boolean = 0, verbose A
12301230
if ($extract(InternalName, 1) = "/"){
12311231
set sc = ..ImportCSPFile(InternalName)
12321232
} else{
1233-
set sc = $system.OBJ.Load(filename,"-l-d")
1233+
set sc = $system.OBJ.Load(filename,"ck")
12341234
}
12351235
}
12361236
if sc {
@@ -2282,4 +2282,3 @@ ClassMethod BaselineExport(pCommitMessage = "", pPushToRemote = "") As %Status
22822282
}
22832283

22842284
}
2285-

0 commit comments

Comments
 (0)