diff options
author | Florian-Schoenherr <florian.schoenherr99@gmail.com> | 2021-08-21 12:43:17 +0200 |
---|---|---|
committer | Florian-Schoenherr <florian.schoenherr99@gmail.com> | 2021-08-21 12:43:17 +0200 |
commit | 836b212acdc0c149cc4cf4959d72b79187dd7993 (patch) | |
tree | 5adac33151f571dba4c675f116e00049c54f3489 /python/servo/build_commands.py | |
parent | ee433e53cad8468d33f3d0111e749bfebee56de8 (diff) | |
download | servo-836b212acdc0c149cc4cf4959d72b79187dd7993.tar.gz servo-836b212acdc0c149cc4cf4959d72b79187dd7993.zip |
docs: clarify 'clean' command
Signed-off-by: Florian-Schoenherr <florian.schoenherr99@gmail.com>
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index a0ad4b9d615..976e39c6b47 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -758,7 +758,7 @@ class MachCommands(CommandBase): return status @Command('clean', - description='Clean the build directory.', + description='Clean the target/ and python/_virtualenv[version]/ and support/hololens/ directories', category='build') @CommandArgument('--manifest-path', default=None, @@ -786,7 +786,7 @@ class MachCommands(CommandBase): return check_call(["cargo", "clean"] + opts, env=self.build_env(), verbose=verbose) @Command('clean-uwp', - description='Clean the support/hololens/ directory.', + description='Clean the support/hololens/ directory', category='build') def clean_uwp(self): uwp_artifacts = [ |