diff options
| author | Stefan Boberg <[email protected]> | 2021-11-17 14:56:22 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-11-17 14:56:22 +0100 |
| commit | 56d6eb7f6a044982b00893a13f8a31b53c7fb1eb (patch) | |
| tree | ce9770c73b64a63b12f1668a850bdd6317ea3fc1 /zen/zen.cpp | |
| parent | gc: fixed missing cidstore association (diff) | |
| download | archived-zen-56d6eb7f6a044982b00893a13f8a31b53c7fb1eb.tar.xz archived-zen-56d6eb7f6a044982b00893a13f8a31b53c7fb1eb.zip | |
zen: eliminated unused deploy command
Diffstat (limited to 'zen/zen.cpp')
| -rw-r--r-- | zen/zen.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/zen/zen.cpp b/zen/zen.cpp index 3c33ff5e0..f5088533f 100644 --- a/zen/zen.cpp +++ b/zen/zen.cpp @@ -7,7 +7,6 @@ #include "cmds/cache.h" #include "cmds/copy.h" #include "cmds/dedup.h" -#include "cmds/deploy.h" #include "cmds/hash.h" #include "cmds/print.h" #include "cmds/run.h" @@ -102,7 +101,6 @@ main(int argc, char** argv) HashCommand HashCmd; CopyCommand CopyCmd; DedupCommand DedupCmd; - DeployCommand DeployCmd; DropCommand DropCmd; ChunkCommand ChunkCmd; RunCommand RunCmd; @@ -127,7 +125,6 @@ main(int argc, char** argv) // clang-format off {"chunk", &ChunkCmd, "Perform chunking"}, {"copy", &CopyCmd, "Copy file(s)"}, - {"deploy", &DeployCmd, "Deploy data"}, {"dedup", &DedupCmd, "Dedup files"}, {"drop", &DropCmd, "Drop cache bucket(s)"}, {"hash", &HashCmd, "Compute file hashes"}, |