mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Merge command
- Added call of gc() before executing the merge algorithm - Removed workaround in unit test merge.t
This commit is contained in:
parent
aa891401e4
commit
f6cfa1dfa5
2 changed files with 7 additions and 8 deletions
|
@ -241,7 +241,8 @@ int Context::dispatch (std::string &out)
|
|||
else if (cmd.command == "shell") { handleShell ( ); }
|
||||
#endif
|
||||
else if (cmd.command == "undo") { handleUndo ( ); }
|
||||
else if (cmd.command == "_merge") { handleMerge (out); }
|
||||
else if (cmd.command == "_merge") { tdb.gc ();
|
||||
handleMerge (out); }
|
||||
else if (cmd.command == "_projects") { rc = handleCompletionProjects (out); }
|
||||
else if (cmd.command == "_tags") { rc = handleCompletionTags (out); }
|
||||
else if (cmd.command == "_commands") { rc = handleCompletionCommands (out); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue