Fixed deletion of old database copies in Storage

This commit is contained in:
Taharez
2017-05-02 10:29:50 +02:00
committed by GitHub
parent 72558a1e16
commit c4c9300f47
@@ -25,6 +25,6 @@ foreach($blob in $blobs)
{
echo ("Deleting blob " + $blob.Name)
# Delete the blob.e
Remove-AzureStorageBlob -Container $storageContainer -Context $context -Blob $blob.Name;
Remove-AzureStorageBlob -Container $storageContainerName -Context $context -Blob $blob.Name;
}
}
}