Revert "Inject Execution Debug Message"

This reverts commit 04a2d0ff3b.
This commit is contained in:
Maximilian Paß
2023-11-23 15:27:31 +01:00
parent 04a2d0ff3b
commit 64412e1c4b

View File

@ -696,7 +696,6 @@ func prepareCommandTTY(command string, currentNanoTime int64, privilegedExecutio
// Take the command to be executed and wrap it to redirect stderr. // Take the command to be executed and wrap it to redirect stderr.
stderrFifoPath := stderrFifo(currentNanoTime) stderrFifoPath := stderrFifo(currentNanoTime)
command = fmt.Sprintf(stderrWrapperCommandFormat, stderrFifoPath, command, stderrFifoPath) command = fmt.Sprintf(stderrWrapperCommandFormat, stderrFifoPath, command, stderrFifoPath)
command = injectStartDebugMessage(command, 0, 1)
command = setUserCommand(command, privilegedExecution) command = setUserCommand(command, privilegedExecution)
command = unsetEnvironmentVariables(command) command = unsetEnvironmentVariables(command)