mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Don't normalize path delimiters for terminal commands
This commit is contained in:
parent
e192d3b8bd
commit
77c3f9f94b
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue