From 1e15042be25b6b487f5b33e886cb35bf64c3b552 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Thu, 27 Jan 2022 00:34:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Start=20a=20"clean"=20terminal?= =?UTF-8?q?=20every=20time=20(#99)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (Backported for the stable build.) --- PHP Monitor.xcodeproj/project.pbxproj | 8 ++++---- phpmon/Domain/Terminal/Shell.swift | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PHP Monitor.xcodeproj/project.pbxproj b/PHP Monitor.xcodeproj/project.pbxproj index 1fbac95..a696129 100644 --- a/PHP Monitor.xcodeproj/project.pbxproj +++ b/PHP Monitor.xcodeproj/project.pbxproj @@ -831,7 +831,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 137; + CURRENT_PROJECT_VERSION = 140; DEVELOPMENT_TEAM = 8M54J5J787; ENABLE_HARDENED_RUNTIME = YES; INFOPLIST_FILE = phpmon/Info.plist; @@ -840,7 +840,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 4.1.2; + MARKETING_VERSION = 4.1.3; PRODUCT_BUNDLE_IDENTIFIER = com.nicoverbruggen.phpmon; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -856,7 +856,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 137; + CURRENT_PROJECT_VERSION = 140; DEVELOPMENT_TEAM = 8M54J5J787; ENABLE_HARDENED_RUNTIME = YES; INFOPLIST_FILE = phpmon/Info.plist; @@ -865,7 +865,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 4.1.2; + MARKETING_VERSION = 4.1.3; PRODUCT_BUNDLE_IDENTIFIER = com.nicoverbruggen.phpmon; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/phpmon/Domain/Terminal/Shell.swift b/phpmon/Domain/Terminal/Shell.swift index 1c22259..9cc958a 100644 --- a/phpmon/Domain/Terminal/Shell.swift +++ b/phpmon/Domain/Terminal/Shell.swift @@ -91,7 +91,7 @@ class Shell { : command task.launchPath = self.shell - task.arguments = ["--login", "-c", tailoredCommand] + task.arguments = ["--noprofile", "-norc", "--login", "-c", tailoredCommand] task.standardOutput = outputPipe task.standardError = errorPipe task.launch()