Azure Blob copy to $web
When you try to copy files to $web in your static site (Azure storage account), you need to escape $web otherwise you won't be able to copy files across.
So typically you do something like
az cli storage upload-batch -s sourcefolder -d destinationfolder \$web
Especially when you on a Mac or Linux based system.
Comments