mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug - Exec
- The execute command was not putting spaces between combined arguments when constructing a command line.
This commit is contained in:
parent
aace091329
commit
4d328a1e46
1 changed files with 5 additions and 0 deletions
|
@ -53,7 +53,12 @@ int CmdExec::execute (std::string& output)
|
|||
{
|
||||
if (arg != context.a3.begin () &&
|
||||
arg->_raw != "execute")
|
||||
{
|
||||
if (command_line.length ())
|
||||
command_line += " ";
|
||||
|
||||
command_line += arg->_raw;
|
||||
}
|
||||
}
|
||||
|
||||
return system (command_line.c_str ());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue