Skip to content

Commit 34ba459

Browse files
committed
docs(cli): clarify --env-file help (allowed: .env, .env.<suffix>, <prefix>.env)
1 parent 97ec363 commit 34ba459

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

silverback/_cli.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,10 @@ def _network_callback(ctx, param, val):
116116
callback=env_file_callback,
117117
is_eager=True,
118118
expose_value=False,
119-
help="Path to a .env file (repeatable; last wins). Allowed: .env, .env.<suffix>, and *.env.",
119+
help=(
120+
"Path to a .env file (repeatable; last wins). "
121+
"Allowed: .env, .env.<suffix>, and <prefix>.env."
122+
),
120123
)
121124
@click.argument("bot", required=False, callback=bot_path_callback)
122125
def run(cli_ctx, account, runner_class, recorder_class, max_exceptions, debug, bot):
@@ -238,7 +241,10 @@ def build(generate, tag_base, version, push, path):
238241
callback=env_file_callback,
239242
is_eager=True,
240243
expose_value=False,
241-
help="Path to a .env file (repeatable; last wins). Allowed: .env, .env.<suffix>, and *.env.",
244+
help=(
245+
"Path to a .env file (repeatable; last wins). "
246+
"Allowed: .env, .env.<suffix>, and <prefix>.env."
247+
),
242248
)
243249
@click.argument("bot", required=False, callback=bot_path_callback)
244250
def worker(cli_ctx, account, workers, max_exceptions, shutdown_timeout, debug, bot):

0 commit comments

Comments
 (0)