mirror of
https://github.com/lxsang/DiyaSDK.git
synced 2024-11-16 18:18:22 +01:00
26 lines
438 B
Smalltalk
26 lines
438 B
Smalltalk
|change|
|
|
change := false.
|
|
HEBinaryReaderWriter ifNil:[
|
|
[
|
|
Metacello new
|
|
repository: 'github://tesonep/hermes';
|
|
baseline:'Hermes';
|
|
load
|
|
] on: Warning do: #resume.
|
|
change := true.
|
|
].
|
|
|
|
DiyaBoot ifNil:[
|
|
[
|
|
Metacello new
|
|
repository: 'github://lxsang/Diya-API';
|
|
baseline:'Diya';
|
|
load
|
|
] on: Warning do: #resume.
|
|
change := true.
|
|
].
|
|
|
|
change ifTrue:[
|
|
FTSizeRec rebuildFieldAccessors.
|
|
Smalltalk snapshot: true andQuit: true.
|
|
]. |