From 7647978da5f7f10d29b1100d457806aff084aef0 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Wed, 26 Jan 2022 23:48:24 +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 --- phpmon-common/Core/Shell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpmon-common/Core/Shell.swift b/phpmon-common/Core/Shell.swift index 2dfcdf9..a1ae6c1 100644 --- a/phpmon-common/Core/Shell.swift +++ b/phpmon-common/Core/Shell.swift @@ -123,7 +123,7 @@ public class Shell { let task = Process() task.launchPath = self.shell - task.arguments = ["--login", "-c", tailoredCommand] + task.arguments = ["--noprofile", "-norc", "--login", "-c", tailoredCommand] return task }