Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 6fe1cf3

Browse files
committed
Fix copy command on Windows
Use xcopy and ensure it copies recursively
1 parent fb7d16a commit 6fe1cf3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ In this module, you'll setup an Amazon S3 bucket to host your assets and configu
119119
On Windows:
120120

121121
```console
122-
copy /Y lab1 work
122+
xcopy /E lab1 work
123123
```
124124

125125
1. Copy the Wild Rydes static website files into your bucket. Replace the **INSERT_BUCKET_NAME_HERE** placeholder with the bucket you created earlier.
@@ -248,7 +248,7 @@ Visitors to your website who are interested in participating in your beta progra
248248
On Windows:
249249

250250
```console
251-
copy /Y lab2 work
251+
xcopy /E lab2 work
252252
```
253253

254254
1. In your work directory, open **scripts/config.js** in your text editor.
@@ -524,7 +524,7 @@ Your marketing team needs an administrative interface to manage aspects of the s
524524
On Windows:
525525
526526
```console
527-
copy /Y lab3 work
527+
xcopy /E lab3 work
528528
```
529529
530530
1. In your work directory, open **scripts/config.js** in your text editor.
@@ -754,7 +754,7 @@ To keep your visitors up to date on your progress building your product, your ma
754754
On Windows:
755755

756756
```console
757-
copy /Y lab4 work
757+
xcopy /E lab4 work
758758
```
759759

760760
1. Update the contents of the Amazon S3 bucket created in Lab 1 with the new files:

0 commit comments

Comments
 (0)