mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug
- Fixed problem with execute; the rc argument and rc.* overrides were added to the command line.
This commit is contained in:
parent
70124972c2
commit
064eacd6bc
1 changed files with 3 additions and 1 deletions
|
@ -53,7 +53,9 @@ int CmdExec::execute (std::string& output)
|
||||||
for (arg = context.a3.begin (); arg != context.a3.end (); ++arg)
|
for (arg = context.a3.begin (); arg != context.a3.end (); ++arg)
|
||||||
{
|
{
|
||||||
if (arg != context.a3.begin () &&
|
if (arg != context.a3.begin () &&
|
||||||
arg->_raw != "execute")
|
arg->_raw != "execute" &&
|
||||||
|
arg->_category != Arg::cat_rc &&
|
||||||
|
arg->_category != Arg::cat_override)
|
||||||
{
|
{
|
||||||
if (command_line.length ())
|
if (command_line.length ())
|
||||||
command_line += " ";
|
command_line += " ";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue