mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 04:27:20 +02:00
Args
- Updated args.cpp to be at parity with Context::initialize.
This commit is contained in:
parent
f439cd4813
commit
aa9e3da77b
1 changed files with 8 additions and 5 deletions
13
src/args.cpp
13
src/args.cpp
|
@ -35,11 +35,12 @@ int main (int argc, const char** argv)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Prepare the Context object.
|
|
||||||
|
|
||||||
|
|
||||||
A3t a3t;
|
A3t a3t;
|
||||||
a3t.initialize (argc, argv);
|
a3t.initialize (argc, argv);
|
||||||
|
a3t.append_stdin ();
|
||||||
|
a3t.findFileOverride ();
|
||||||
|
a3t.findConfigOverride ();
|
||||||
|
a3t.findAliases ();
|
||||||
|
|
||||||
// Reports.
|
// Reports.
|
||||||
a3t.entity ("report", "list");
|
a3t.entity ("report", "list");
|
||||||
|
@ -144,8 +145,10 @@ int main (int argc, const char** argv)
|
||||||
a3t.entity ("operator", "^");
|
a3t.entity ("operator", "^");
|
||||||
a3t.entity ("operator", "!");
|
a3t.entity ("operator", "!");
|
||||||
|
|
||||||
a3t.findFileOverride ();
|
a3t.findCommand ();
|
||||||
a3t.findConfigOverride ();
|
a3t.findUUIDList ();
|
||||||
|
a3t.findIdSequence ();
|
||||||
|
a3t.inject_defaults ();
|
||||||
|
|
||||||
Tree* tree = a3t.parse ();
|
Tree* tree = a3t.parse ();
|
||||||
if (tree)
|
if (tree)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue