aboutsummaryrefslogtreecommitdiff
path: root/src/zen/cmds/builds_cmd.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-04-23 17:16:16 +0200
committerGitHub Enterprise <[email protected]>2025-04-23 17:16:16 +0200
commit2ec01ef9c6e07b77afa33fe3db6335f231c78006 (patch)
treee2224d7859c4ce88defc046f9e55b13a3f9fa41f /src/zen/cmds/builds_cmd.cpp
parentparse system dir for builds (#365) (diff)
downloadarchived-zen-2ec01ef9c6e07b77afa33fe3db6335f231c78006.tar.xz
archived-zen-2ec01ef9c6e07b77afa33fe3db6335f231c78006.zip
zen wipe command (#366)
- Feature: New `zen wipe` command for fast cleaning of directories, it will not remove the directory itself, only the content - `--directory` - path to directory to wipe, if the directory does not exist or is empty, no action will be taken - `--keep-readonly` - skip removal of read-only files found in directory, defaults to `true`, set to `false` to remove read-only files - `--quiet` - reduce output to console, defaults to `false` - `--dryrun` - simulate the wipe without removing anything, defaults to `false` - `--yes` - skips prompt to confirm wipe of directory - `--plain-progress` - show progress using plain output - `--verbose` - enable verbose console output - `--boost-workers` - increase the number of worker threads, may cause computer to be less responsive, defaults to `false`
Diffstat (limited to 'src/zen/cmds/builds_cmd.cpp')
-rw-r--r--src/zen/cmds/builds_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zen/cmds/builds_cmd.cpp b/src/zen/cmds/builds_cmd.cpp
index b113ce6d1..6c97645cd 100644
--- a/src/zen/cmds/builds_cmd.cpp
+++ b/src/zen/cmds/builds_cmd.cpp
@@ -8873,7 +8873,7 @@ BuildsCommand::BuildsCommand()
Ops.add_option("",
"",
"boost-workers",
- "Increase the number of worker threads - may cause computer to less responsive",
+ "Increase the number of worker threads - may cause computer to be less responsive",
cxxopts::value(m_BoostWorkerThreads),
"<boostworkers>");
};