Skip to content

Commit c163497

Browse files
authored
fix(minio): enable flag and passing bucket name (#13)
1 parent 596e514 commit c163497

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ def main(): # pragma: no cover
233233
"--minio",
234234
default=False,
235235
action="store_true",
236-
env_var="MINIO_URL",
237-
help="MinIO URL",
236+
env_var="MINIO_ENABLE",
237+
help="Enable MinIO",
238238
)
239239
p.add(
240240
"--minio-url",
@@ -327,7 +327,7 @@ def main(): # pragma: no cover
327327
mc=mc,
328328
acr_project_id=options.acr_project_id,
329329
acr_stream_id=options.acr_stream_id,
330-
bucket=options.bucket,
330+
bucket=options.minio_bucket,
331331
)
332332

333333

0 commit comments

Comments
 (0)