smalltalk
/
osmo-st-msc
Archived
1
0
Fork 0

msc: Flush the package cache to be able to relocate the image

The system GST must have the package cache in different directories.
Flush the cache before saving the image.
This commit is contained in:
Holger Hans Peter Freyther 2012-09-10 00:04:26 +02:00
parent eb6317ba50
commit c8b5c70f6a
1 changed files with 2 additions and 1 deletions

View File

@ -52,5 +52,6 @@ Object subclass: Loader [
Eval [
| l |
l := Loader new.
ObjectMemory snapshot: Smalltalk arguments first
PackageLoader flush.
ObjectMemory snapshot: Smalltalk arguments first.
]