Skip to content

Commit 21864f0

Browse files
authored
chore: eliminate src directory in non-root example (#1268)
1 parent c8e7465 commit 21864f0

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

examples/included-as-non-root/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ $ docker run -it --rm --entrypoint id -u node cypress/included
2525
uid=1000(node) gid=1000(node) groups=1000(node)
2626
```
2727

28-
To run the example Cypress project in the [src](./src/) subdirectory with `node` as user, change directory to `examples/included-as-non-root` and execute the following `docker run` command:
28+
To run the example Cypress project with `node` as user, change directory to `examples/included-as-non-root` and execute the following `docker run` command:
2929

3030
```shell
3131
cd examples/included-as-non-root
32-
docker run -it --rm -v ./src:/test -w /test -u node cypress/included
32+
docker run --rm -v .:/test -w /test -u node cypress/included
3333
```
3434

3535
You can expect this command to run successfully.

0 commit comments

Comments
 (0)