mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-10 22:20:37 +02:00
Bug (missing quotes in execute command)
Fixed a bug where special characters within arguments passed to the "execute" command needed to be escaped twice.
This commit is contained in:
parent
e3afa04e2d
commit
0a8c54ae57
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ int CmdExec::execute (std::string& output)
|
||||||
if (command_line.length ())
|
if (command_line.length ())
|
||||||
command_line += " ";
|
command_line += " ";
|
||||||
|
|
||||||
command_line += arg->_raw;
|
command_line += "'" + arg->_raw + "'";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue