1
0
mirror of https://github.com/lxsang/DiyaSDK.git synced 2024-07-03 10:09:49 +02:00
DiyaSDK/install.st

26 lines
437 B
Smalltalk
Raw Normal View History

2022-02-15 22:08:44 +01:00
|change|
change := false.
HEBinaryReaderWriter ifNil:[
[
Metacello new
2022-08-08 00:29:22 +02:00
repository: 'github://lxsang/hermes';
2022-02-15 22:08:44 +01:00
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:[
2022-03-04 20:45:12 +01:00
FTSizeRec rebuildFieldAccessors.
2022-02-15 22:08:44 +01:00
Smalltalk snapshot: true andQuit: true.
].