Skip to content

Commit 4b6a04d

Browse files
authored
Merge pull request #226 from Taharez/patch-1
Fixed deletion of old database copies in Storage
2 parents 673d474 + c4c9300 commit 4b6a04d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/manage/azure-automation-automated-export/AutoExportBlobRetention.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ foreach($blob in $blobs)
2525
{
2626
echo ("Deleting blob " + $blob.Name)
2727
# Delete the blob.e
28-
Remove-AzureStorageBlob -Container $storageContainer -Context $context -Blob $blob.Name;
28+
Remove-AzureStorageBlob -Container $storageContainerName -Context $context -Blob $blob.Name;
2929
}
30-
}
30+
}

0 commit comments

Comments
 (0)