diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-03-08 10:21:46 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-03-11 15:17:16 +0100 |
commit | 20d105a65d305c724948ce389654c74cacac013c (patch) | |
tree | b0a99ceeb7c4264558893b2e086a6b3117941667 /src/buildtool/main/cli.cpp | |
parent | 4f306e033ba5523b3b07ca8c709b609f0c117cf1 (diff) | |
download | justbuild-20d105a65d305c724948ce389654c74cacac013c.tar.gz |
gc: add option --no-rotation
... to clean up what can be done without losing cache information.
Diffstat (limited to 'src/buildtool/main/cli.cpp')
-rw-r--r-- | src/buildtool/main/cli.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buildtool/main/cli.cpp b/src/buildtool/main/cli.cpp index c5da32bb..413befa6 100644 --- a/src/buildtool/main/cli.cpp +++ b/src/buildtool/main/cli.cpp @@ -127,6 +127,7 @@ auto SetupGcCommandArguments( gsl::not_null<CommandLineArguments*> const& clargs) { SetupLogArguments(app, &clargs->log); SetupCacheArguments(app, &clargs->endpoint); + SetupGcArguments(app, &clargs->gc); } /// \brief Setup arguments for sub command "just execute". |