Skip to content

Commit

Permalink
Add help text for --file flag for the conda env export command (con…
Browse files Browse the repository at this point in the history
  • Loading branch information
ForgottenProgramme authored Mar 29, 2023
1 parent f21ebcb commit 88a5a04
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion conda_env/cli/main_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ def configure_parser(sub_parsers):
p.add_argument(
'-f', '--file',
default=None,
required=False
required=False,
help=(
"File name or path for the exported environment. "
"Note: This will silently overwrite any existing file "
"of the same name in the current directory."
),
)

p.add_argument(
Expand Down

0 comments on commit 88a5a04

Please sign in to comment.