Skip to content

Commit a9bb875

Browse files
authored
docs(contributing): fixed buildup command example (#24899)
Fixed `buildup` command instruction. After the library restructure you need to go up 2 directories from `packages/aws-cdk-lib` to execute it. ``` ../../scripts/buildup ``` ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 2bb49bf commit a9bb875

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ time, you can execute the following to build it and it's dependencies.
100100

101101
```console
102102
$ cd packages/aws-cdk-lib
103-
$ ../../../scripts/buildup
103+
$ ../../scripts/buildup
104104
```
105105

106106
Note: The `buildup` command is resumable. If your build fails, you can fix the issue and run `buildup --resume` to
@@ -143,7 +143,7 @@ To package a specific module, say the `aws-cdk-lib` module:
143143
$ cd <root-of-cdk-repo>
144144
$ docker run --rm --net=host -it -v $PWD:$PWD -w $PWD jsii/superchain:1-buster-slim
145145
docker$ cd packages/aws-cdk-lib
146-
docker$ ../../../scripts/foreach.sh --up yarn run package
146+
docker$ ../../scripts/foreach.sh --up yarn run package
147147
docker$ exit
148148
```
149149

0 commit comments

Comments
 (0)