Skip to content

Commit

Permalink
Fixes #540 "Basic launch" does not work for Pharo 10 images
Browse files Browse the repository at this point in the history
  • Loading branch information
demarey committed Feb 23, 2022
1 parent 629b856 commit 33227ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PharoLauncher-Core/PhLLaunchConfiguration.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ PhLLaunchConfiguration >> printOn: aStream [
{ #category : #configuring }
PhLLaunchConfiguration >> useSettings: aBoolean [
"Cannot skip Pharo settings before Pharo 3.0"
self image ensurePharoVersion < '30' ifTrue: [ ^ self ].
self image ensurePharoVersion asInteger < 30 ifTrue: [ ^ self ].

usePharoSettings := aBoolean.
]
Expand Down

0 comments on commit 33227ee

Please sign in to comment.