mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Command - install
- Temporarily removed CmdInstall from the build. This is deferred until 2.1 or so, when extensions are supported.
This commit is contained in:
parent
8827f9c978
commit
424dc50a36
2 changed files with 2 additions and 3 deletions
|
@ -29,7 +29,6 @@ set (commands_SRCS Command.cpp Command.h
|
|||
CmdIDs.cpp CmdIDs.h
|
||||
CmdImport.cpp CmdImport.h
|
||||
CmdInfo.cpp CmdInfo.h
|
||||
CmdInstall.cpp CmdInstall.h
|
||||
CmdLog.cpp CmdLog.h
|
||||
CmdLogo.cpp CmdLogo.h
|
||||
CmdMerge.cpp CmdMerge.h
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
#include <CmdIDs.h>
|
||||
#include <CmdImport.h>
|
||||
#include <CmdInfo.h>
|
||||
#include <CmdInstall.h>
|
||||
//#include <CmdInstall.h>
|
||||
#include <CmdLog.h>
|
||||
#include <CmdLogo.h>
|
||||
#include <CmdMerge.h>
|
||||
|
@ -126,7 +126,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdIDs (); all[c->keyword ()] = c;
|
||||
c = new CmdImport (); all[c->keyword ()] = c;
|
||||
c = new CmdInfo (); all[c->keyword ()] = c;
|
||||
c = new CmdInstall (); all[c->keyword ()] = c;
|
||||
// c = new CmdInstall (); all[c->keyword ()] = c;
|
||||
c = new CmdLog (); all[c->keyword ()] = c;
|
||||
c = new CmdLogo (); all[c->keyword ()] = c;
|
||||
c = new CmdMerge (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue