Skip to content

Commit fe13ece

Browse files
committed
Fix AzCopy command to upload all files in the local directory by adding wildcard to path
1 parent 716f0fb commit fe13ece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

upload_with_azcopy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def upload_with_azcopy(local_dir: str, dest_url: str, logger: logging.Logger) ->
1717
"""
1818
cmd = [
1919
"azcopy", "copy",
20-
f"{local_dir}",
20+
f"{local_dir}/*",
2121
dest_url,
2222
"--recursive=true"
2323
]

0 commit comments

Comments
 (0)