From d2153965c7430e52a5f22ee9810b5d31be214ee8 Mon Sep 17 00:00:00 2001 From: DEMAREY Christophe Date: Thu, 11 Jan 2024 15:43:58 +0100 Subject: [PATCH] fix detection of cmd line Vs interactive mode --- src/PharoLauncher-Spec2/PhLDeploymentScript.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PharoLauncher-Spec2/PhLDeploymentScript.class.st b/src/PharoLauncher-Spec2/PhLDeploymentScript.class.st index 6d5f5f12..bab503b8 100644 --- a/src/PharoLauncher-Spec2/PhLDeploymentScript.class.st +++ b/src/PharoLauncher-Spec2/PhLDeploymentScript.class.st @@ -168,7 +168,7 @@ PhLDeploymentScript class >> isDeployed [ PhLDeploymentScript class >> launcherStartUp [ self isDeployed ifFalse: [ ^ self ]. - Smalltalk isInteractive + Smalltalk isInteractiveGraphic ifTrue: [ self closeWindowsAndOpenLauncher ] ifFalse: [ PharoLauncherApplication default: PhLNotificationCenter default ] ]