From 69042042ea8fee3a929cb9e9983a510f27a6a579 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Tue, 21 Dec 2021 18:00:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20Cleanup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xcshareddata/xcschemes/PHP Monitor CLI.xcscheme | 6 +----- phpmon-cli/main.swift | 4 ++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/PHP Monitor.xcodeproj/xcshareddata/xcschemes/PHP Monitor CLI.xcscheme b/PHP Monitor.xcodeproj/xcshareddata/xcschemes/PHP Monitor CLI.xcscheme index b54454c..41be842 100644 --- a/PHP Monitor.xcodeproj/xcshareddata/xcschemes/PHP Monitor CLI.xcscheme +++ b/PHP Monitor.xcodeproj/xcshareddata/xcschemes/PHP Monitor CLI.xcscheme @@ -52,11 +52,7 @@ - - diff --git a/phpmon-cli/main.swift b/phpmon-cli/main.swift index e6c03ba..2a50be7 100644 --- a/phpmon-cli/main.swift +++ b/phpmon-cli/main.swift @@ -8,7 +8,7 @@ import Foundation -let toolver = "1.0" +let toolver = "0.1 (early access)" let log = Log.shared @@ -34,7 +34,7 @@ let action = AllowedArguments.init(rawValue: argument) switch action { case .use, .performSwitch: if !Shell.fileExists("\(Paths.binPath)/php") { - Log.err("PHP is currently not linked. Attempting to link `php` at least...") + Log.err("PHP is currently not linked. Attempting quick fix...") _ = Shell.user.executeSynchronously("brew link php", requiresPath: true) }