1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-08 04:20:07 +02:00

🐛 Start a "clean" terminal every time (#99)

This commit is contained in:
2022-01-26 23:48:24 +01:00
parent f82f3052f2
commit 7647978da5

View File

@ -123,7 +123,7 @@ public class Shell {
let task = Process() let task = Process()
task.launchPath = self.shell task.launchPath = self.shell
task.arguments = ["--login", "-c", tailoredCommand] task.arguments = ["--noprofile", "-norc", "--login", "-c", tailoredCommand]
return task return task
} }