mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
e23a888449
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
443 B
443 B
gradle clean
Delete the build directory and all generated files. More information: https://docs.gradle.org/current/userguide/command_line_interface.html#cleaning_outputs.
- Clean the build directory:
gradle clean
- Clean and then build the project:
gradle clean build
- Clean a specific subproject in a multi-project build:
gradle :{{subproject}}:clean
- Clean with more detailed logging:
gradle clean {{[-i|--info]}}