Feb. 18, 2014
2:27 p.m.
Hi there, can someone clarify this for me? lets say you execute in the terminal: pharo-vm-nox some.image save awesome.image âdelete-old it starts, saves the image and deletes the old one and quits returning control to terminal but if you do: pharo-vm-nox some.image ImageBuilder.st save awesome.image âdelete-old it stays forever open I was taking a look at this but what is âquitâ option? can someone explain the behaviour of this please? STCommandLineHandler>>end | quit | quit := self commandLine hasOption: 'quit'. (self commandLine hasOption: 'save') ifTrue: [ Smalltalk snapshot: true andQuit: quit ]. quit ifTrue: [ self exitSuccess ].