From defb0bceeb67f3da4e6e24989f1bb41c1f2f32e5 Mon Sep 17 00:00:00 2001 From: Jim Schubert Date: Thu, 11 Jun 2020 23:07:22 -0400 Subject: [PATCH] Update building.md (#6635) Fix invalid yaml in building docs --- docs/building.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/building.md b/docs/building.md index 4f7d482ba2f..237263c8ef4 100644 --- a/docs/building.md +++ b/docs/building.md @@ -43,7 +43,7 @@ Once built, `run-in-docker.sh` will act as an executable for openapi-generator-c ```bash ./run-in-docker.sh help # Executes 'help' command for openapi-generator-cli ./run-in-docker.sh list # Executes 'list' command for openapi-generator-cli -./run-in-docker.sh /gen/bin/generate-samples.sh /gen/bin/configs/go-petstore.yaml/ # Builds the Go client +./run-in-docker.sh /gen/bin/generate-samples.sh /gen/bin/configs/go-petstore.yaml # Builds the Go client ./run-in-docker.sh generate -i modules/openapi-generator/src/test/resources/2_0/petstore.yaml \ -g go -o /gen/out/go-petstore -DpackageName=petstore # generates go client, outputs locally to ./out/go-petstore ```