Skip to content

Commit f816286

Browse files
authored
Update storage-use-azcopy-s3.md
Change env var using $env, not the set command which is a local variable and won't work.
1 parent d4fd0a9 commit f816286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/storage/common/storage-use-azcopy-s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Gather your AWS access key and secret access key, and then set these environment
4040

4141
| Operating system | Command |
4242
|--------|-----------|
43-
| **Windows** | `set AWS_ACCESS_KEY_ID=<access-key>`<br>`set AWS_SECRET_ACCESS_KEY=<secret-access-key>` |
43+
| **Windows** | `$env:AWS_ACCESS_KEY_ID=<access-key>`<br>`$env:AWS_SECRET_ACCESS_KEY=<secret-access-key>` |
4444
| **Linux** | `export AWS_ACCESS_KEY_ID=<access-key>`<br>`export AWS_SECRET_ACCESS_KEY=<secret-access-key>`|
4545
| **macOS** | `export AWS_ACCESS_KEY_ID=<access-key>`<br>`export AWS_SECRET_ACCESS_KEY=<secret-access-key>`|
4646

0 commit comments

Comments
 (0)