mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +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;
|
||||
|
||||
else if (! before_command)
|
||||
mods.push_back (*arg);
|
||||
{
|
||||
if (arg->_category == "rc" ||
|
||||
arg->_category == "override")
|
||||
;
|
||||
else
|
||||
mods.push_back (*arg);
|
||||
}
|
||||
}
|
||||
|
||||
mods = tokenize (mods);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue