We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c549f commit e496356Copy full SHA for e496356
function_app.py
@@ -91,10 +91,9 @@ def upload_with_azcopy(local_dir):
91
dest_url = os.environ.get('DZI_UPLOAD_DEST_URL')
92
cmd = [
93
"azcopy", "copy",
94
- f"{local_dir}/",
+ f"{local_dir}",
95
dest_url,
96
- "--recursive=true",
97
- "--log-level=DEBUG"
+ "--recursive=true"
98
]
99
logger.info(f"AzCopy command: azcopy copy {cmd[2]} {dest_url} --recursive=true (using SAS token)")
100
result = subprocess.run(cmd, capture_output=True, text=True)
0 commit comments