Skip to content

Commit

Permalink
Merge pull request #80 from shoshanatech/image-shutdown-on-windows
Browse files Browse the repository at this point in the history
nil-check VMProcess when shutting down, will be nil on Windows
  • Loading branch information
jecisc committed Dec 1, 2023
2 parents 06ec31d + b17bfde commit fc8f262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repository/OSSubprocess/OSSVMProcess.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ OSSVMProcess class >> new [

{ #category : #'system startup' }
OSSVMProcess class >> shutDown: quitting [
self vmProcess shutDown: quitting
self vmProcess ifNotNil: [:a | a shutDown: quitting]
]

{ #category : #'system startup' }
Expand Down

0 comments on commit fc8f262

Please sign in to comment.