Skip to content

Commit

Permalink
Fixed syntax in job command executing python script (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieLF committed Jun 26, 2023
1 parent 8938995 commit 371de77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/unzip_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ def main(search_path: str):
job.command('cd /io')
job.command(
f"""
python3 {UNZIP_SCRIPT}
--bucket {bucket_name}
--subdir {subdir}
--blob_name {blobname}
python3 {UNZIP_SCRIPT} \
--bucket {bucket_name} \
--subdir {subdir} \
--blob_name {blobname} \
--outdir {output_dir}
"""
)
Expand Down

0 comments on commit 371de77

Please sign in to comment.