FIX: Don't normalize path delimiters for terminal commands

This commit is contained in:
Alexander Koblov 2025-09-14 13:27:22 +03:00
commit 77c3f9f94b

View file

@ -281,9 +281,10 @@ begin
if sStartPath='' then
sStartPath:=mbGetCurrentDir;
sCmd:= NormalizePathDelimiters(sCmd);
if not bTerm then
sCmd:= NormalizePathDelimiters(sCmd)
if bTerm then
else // if bTerm then
begin
sCmd := ConcatenateStrWithSpace(sCmd,sParams);
if bKeepTerminalOpen = termStayOpen then