1
0
mirror of https://github.com/lxsang/DiyaSDK.git synced 2024-07-01 17:29:47 +02:00
DiyaSDK/install.st
2022-03-04 20:45:12 +01:00

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.
].