1
0
mirror of https://github.com/lxsang/DiyaSDK.git synced 2024-07-05 19:19:47 +02:00
DiyaSDK/install.st
2022-02-15 22:08:44 +01:00

25 lines
404 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:[
Smalltalk snapshot: true andQuit: true.
].