diff options
| author | Dan Engelbrecht <[email protected]> | 2023-02-01 01:00:23 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-02-01 01:00:23 -0800 |
| commit | 149e8636b2965ec0cea0e25285a7d90e312d2b71 (patch) | |
| tree | 243b56d4b15c50e29c323d87c624dd2026e63a58 /zen/zen.cpp | |
| parent | fix formatting of zenutil/include/zenutil/zenserverprocess.h (diff) | |
| download | archived-zen-149e8636b2965ec0cea0e25285a7d90e312d2b71.tar.xz archived-zen-149e8636b2965ec0cea0e25285a7d90e312d2b71.zip | |
Clean up project store file structure (#218)
* move project store to separate folder
* moved import/export project commands into projectstore cmd files
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 e02f3a510..180dea5f4 100644 --- a/zen/zen.cpp +++ b/zen/zen.cpp @@ -9,9 +9,7 @@ #include "cmds/cache.h" #include "cmds/copy.h" #include "cmds/dedup.h" -#include "cmds/exportproject.h" #include "cmds/hash.h" -#include "cmds/importproject.h" #include "cmds/print.h" #include "cmds/projectstore.h" #include "cmds/scrub.h" @@ -20,6 +18,7 @@ #include "cmds/up.h" #include "cmds/version.h" +#include <zencore/filesystem.h> #include <zencore/logging.h> #include <zencore/scopeguard.h> #include <zencore/string.h> @@ -137,7 +136,7 @@ main(int argc, char** argv) #endif zen::logging::InitializeLogging(); - MaximizeOpenFileCount(); + zen::MaximizeOpenFileCount(); ////////////////////////////////////////////////////////////////////////// |