Skip to content

Commit

Permalink
cli: Fix help text for deploy command
Browse files Browse the repository at this point in the history
  • Loading branch information
cassava committed May 6, 2024
1 parent 02101ba commit 4c193c1
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions cli/cloe_launch/commands/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"""
Implementation for cloe-launch command deploy.
Usage: cloe-launch [-v] deploy [-c] [-f] [-r] [-D PATH] CONANFILE [CONAN_INSTALL_ARGS]
Usage: cloe-launch [-v] deploy [-D PATH] CONANFILE [CONAN_INSTALL_ARGS]
"""

import sys
Expand All @@ -42,12 +42,6 @@
help="Destination directory, for example /usr/local.",
prompt="Destination directory",
)
@click.option(
"-f",
"--force",
is_flag=True,
help="Overwrite existing files.",
)
@click.option(
"--rpath/--no-rpath",
is_flag=True,
Expand All @@ -60,7 +54,6 @@
def cli_deploy(
conf: Configuration,
dest: str,
force: bool,
rpath: bool,
conanfile: str,
args: List[str],
Expand All @@ -70,6 +63,8 @@ def cli_deploy(
This may involve downloading missing and available packages and building
outdated packages.
Existing files will be overwritten.
Usage Examples:
\b
Expand Down

0 comments on commit 4c193c1

Please sign in to comment.