Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

updated readme #11

Merged
merged 2 commits into from
Sep 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,9 @@ $ docker-compose run --rm swagger-codegen generate -i /swagger-api/yaml/index2.y
This will generate the API v2 client files under `output/jcapiv2`

Once you are satisfied with the generated API client, you can replace the existing files under the `jcapiv1` and `jcapiv2` folders with your generated files.
```
rm -rf jcapiv1
mv output/jcapiv1 .
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Above it looks like the commands use /swagger-api/out/jcapiv[1|2]. SHould output be just out? Also, using absolute paths here might be more clear, if not too verbose.

rm -rf jcapiv2
mv output/jcapiv2 .
```