Skip to content

Commit 8866929

Browse files
committed
Enhance AzCopy upload process: modify command to copy all files in local directory
1 parent e496356 commit 8866929

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

function_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def upload_with_azcopy(local_dir):
9191
dest_url = os.environ.get('DZI_UPLOAD_DEST_URL')
9292
cmd = [
9393
"azcopy", "copy",
94-
f"{local_dir}",
94+
f"{local_dir}/*",
9595
dest_url,
9696
"--recursive=true"
9797
]

0 commit comments

Comments
 (0)