From 33227ee6afef0c51b446dc8e0305492e2b36cc01 Mon Sep 17 00:00:00 2001 From: Christophe Demarey Date: Wed, 23 Feb 2022 09:20:13 +0100 Subject: [PATCH] Fixes #540 "Basic launch" does not work for Pharo 10 images --- src/PharoLauncher-Core/PhLLaunchConfiguration.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PharoLauncher-Core/PhLLaunchConfiguration.class.st b/src/PharoLauncher-Core/PhLLaunchConfiguration.class.st index 96347d0c..838a5699 100644 --- a/src/PharoLauncher-Core/PhLLaunchConfiguration.class.st +++ b/src/PharoLauncher-Core/PhLLaunchConfiguration.class.st @@ -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. ]