Skip to content

Latest commit

 

History

History
61 lines (49 loc) · 2.13 KB

clear.md

File metadata and controls

61 lines (49 loc) · 2.13 KB

< 📚 Commands Help

🧼 Clear

> rugby clear --help
 > Delete different Rugby folders.

 Subcommands:
╭───────────────────────────────────────╮
│ build   * Delete .rugby/build folder. │
│ shared  * Delete .rugby/bin folder.   │
│ tests   * Delete .rugby/tests folder. │
╰───────────────────────────────────────╯
 Options:
╭────────────────────────────────────────────────────────────────╮
│ -m, --modules []  * List of modules for deletion.              │
│ -o, --output      * Output mode: fold, multiline, silent, raw. │
╰────────────────────────────────────────────────────────────────╯
 Flags:
╭───────────────────────────────────────────────╮
│ -v, --verbose []  * Increase verbosity level. │
│ -q, --quiet []    * Decrease verbosity level. │
│ -h, --help        * Show help information.    │
╰───────────────────────────────────────────────╯
Subcommands
🧼 Build
🧼 Shared
🧼 Tests

Discussion

By default, 🏈 Rugby cleans shared binaries and the build folder if they take about 50 GB.
If you want to clean them up by yourself, call clear command or its subcommands.

You can delete specific modules binaries:

> rugby clear --modules TargetA TargetB

Or you can delete all binaries:

> rugby clear shared

Also, you can delete just the build folder:

> rugby clear build

And finally, you can delete all binaries and build folder:

> rugby clear