Skip to content

Commit

Permalink
Re-add backwards compatible later with old baselines needed for boot…
Browse files Browse the repository at this point in the history
…strapping
  • Loading branch information
guillep committed Jan 2, 2024
1 parent 20f4fb7 commit 1614f8a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Iceberg/IceMetacelloRepositoryAdapter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,13 @@ IceMetacelloRepositoryAdapter >> isValid [
{ #category : 'accessing' }
IceMetacelloRepositoryAdapter >> loadPackageNamed: aName intoLoader: aLoader [

| package |
| package found |
package := self repository workingCopy packageNamed: aName.
^ aLoader addVersion: package latestVersion mcVersion
found := package latestVersion mcVersion.
aLoader addVersion: found.
^ {
found.
self }
]

{ #category : 'MonticelloGUI' }
Expand Down

0 comments on commit 1614f8a

Please sign in to comment.