Skip to content

Commit 4c193c1

Browse files
committed
cli: Fix help text for deploy command
1 parent 02101ba commit 4c193c1

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

cli/cloe_launch/commands/deploy.py

+3-8
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"""
2020
Implementation for cloe-launch command deploy.
2121
22-
Usage: cloe-launch [-v] deploy [-c] [-f] [-r] [-D PATH] CONANFILE [CONAN_INSTALL_ARGS]
22+
Usage: cloe-launch [-v] deploy [-D PATH] CONANFILE [CONAN_INSTALL_ARGS]
2323
"""
2424

2525
import sys
@@ -42,12 +42,6 @@
4242
help="Destination directory, for example /usr/local.",
4343
prompt="Destination directory",
4444
)
45-
@click.option(
46-
"-f",
47-
"--force",
48-
is_flag=True,
49-
help="Overwrite existing files.",
50-
)
5145
@click.option(
5246
"--rpath/--no-rpath",
5347
is_flag=True,
@@ -60,7 +54,6 @@
6054
def cli_deploy(
6155
conf: Configuration,
6256
dest: str,
63-
force: bool,
6457
rpath: bool,
6558
conanfile: str,
6659
args: List[str],
@@ -70,6 +63,8 @@ def cli_deploy(
7063
This may involve downloading missing and available packages and building
7164
outdated packages.
7265
66+
Existing files will be overwritten.
67+
7368
Usage Examples:
7469
7570
\b

0 commit comments

Comments
 (0)