From c09134a68723996d12b28ca53021bd428c134e64 Mon Sep 17 00:00:00 2001 From: Bruno Rocha Date: Mon, 20 Apr 2026 15:29:44 +0200 Subject: [PATCH] Use loging shell --- .../SharedUtils/Shell/ShellCommandRunner.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SourceKitBazelBSP/SharedUtils/Shell/ShellCommandRunner.swift b/Sources/SourceKitBazelBSP/SharedUtils/Shell/ShellCommandRunner.swift index 038a445..81b748e 100644 --- a/Sources/SourceKitBazelBSP/SharedUtils/Shell/ShellCommandRunner.swift +++ b/Sources/SourceKitBazelBSP/SharedUtils/Shell/ShellCommandRunner.swift @@ -43,7 +43,7 @@ struct ShellCommandRunner: CommandRunner { process.currentDirectoryURL = URL(fileURLWithPath: cwd) } - process.arguments = ["-c", cmd] + process.arguments = ["-l", "-c", cmd] process.standardInput = nil // Keep child processes in the same process group