diff options
| author | Dan Engelbrecht <[email protected]> | 2025-04-23 17:16:16 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-04-23 17:16:16 +0200 |
| commit | 2ec01ef9c6e07b77afa33fe3db6335f231c78006 (patch) | |
| tree | e2224d7859c4ce88defc046f9e55b13a3f9fa41f /src/zen/cmds/builds_cmd.cpp | |
| parent | parse system dir for builds (#365) (diff) | |
| download | archived-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.cpp | 2 |
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>"); }; |