diff options
| author | Per Larsson <[email protected]> | 2021-09-20 08:54:34 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-09-20 08:54:34 +0200 |
| commit | e25b4b20d8a5696aa7055c9c167fa47b3739bc7e (patch) | |
| tree | 049654b87096a22e1bf696a385db608a75f229fa /zen/zen.cpp | |
| parent | Probe upstream Zen server when initializing upstream cache. (diff) | |
| parent | Fixed unused variable warnings exposed by xmake build (unclear why I do not r... (diff) | |
| download | archived-zen-e25b4b20d8a5696aa7055c9c167fa47b3739bc7e.tar.xz archived-zen-e25b4b20d8a5696aa7055c9c167fa47b3739bc7e.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zen/zen.cpp')
| -rw-r--r-- | zen/zen.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/zen/zen.cpp b/zen/zen.cpp index 6390c832f..9c373face 100644 --- a/zen/zen.cpp +++ b/zen/zen.cpp @@ -42,7 +42,6 @@ ////////////////////////////////////////////////////////////////////////// - class TemplateCommand : public ZenCmdBase { public: @@ -125,7 +124,7 @@ main(int argc, char** argv) ZenCmdBase* Cmd; const char* CmdSummary; } Commands[] = { - // clang-format off + // clang-format off {"chunk", &ChunkCmd, "Perform chunking"}, {"copy", &CopyCmd, "Copy file(s)"}, {"deploy", &DeployCmd, "Deploy data"}, @@ -139,7 +138,7 @@ main(int argc, char** argv) {"top", &TopCmd, "Monitor zen server activity"}, {"up", &UpCmd, "Bring zen server up"}, {"down", &DownCmd, "Bring zen server down"}, - // clang-format on + // clang-format on }; // Build set containing available commands |