mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-26 15:47:19 +02:00
Arguments
- rc:___ and rc.___ arguments are no longer propagated to commands that modify tasks.
This commit is contained in:
parent
c244132476
commit
1884223a2e
1 changed files with 7 additions and 1 deletions
|
@ -588,7 +588,13 @@ const A3 A3::extract_modifications () const
|
||||||
before_command = false;
|
before_command = false;
|
||||||
|
|
||||||
else if (! before_command)
|
else if (! before_command)
|
||||||
mods.push_back (*arg);
|
{
|
||||||
|
if (arg->_category == "rc" ||
|
||||||
|
arg->_category == "override")
|
||||||
|
;
|
||||||
|
else
|
||||||
|
mods.push_back (*arg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mods = tokenize (mods);
|
mods = tokenize (mods);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue