Skip to content

Commit 912d23d

Browse files
authored
Merge pull request #73367 from DenisBalan/patch-6
Fix multiline script in storage file upload
2 parents af38a5b + 4d7c89a commit 912d23d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/blobs/storage-quickstart-blobs-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,21 @@ Set-AzStorageBlobContent -File "D:\_TestImages\Image000.jpg" `
6161
Set-AzStorageBlobContent -File "D:\_TestImages\Image001.jpg" `
6262
-Container $containerName `
6363
-Blob "Image001.jpg" `
64-
-Context $ctx
64+
-Context $ctx `
6565
-StandardBlobTier Hot
6666
6767
# upload another file to the Cool access tier
6868
Set-AzStorageBlobContent -File "D:\_TestImages\Image002.png" `
6969
-Container $containerName `
7070
-Blob "Image002.png" `
71-
-Context $ctx
71+
-Context $ctx `
7272
-StandardBlobTier Cool
7373
7474
# upload a file to a folder to the Archive access tier
7575
Set-AzStorageBlobContent -File "D:\_TestImages\foldername\Image003.jpg" `
7676
-Container $containerName `
7777
-Blob "Foldername/Image003.jpg" `
78-
-Context $ctx
78+
-Context $ctx `
7979
-StandardBlobTier Archive
8080
```
8181

0 commit comments

Comments
 (0)