Skip to content

Commit 31149a5

Browse files
authoredAug 31, 2018
Publish documentation for the generators (OpenAPITools#932)
1 parent 6bc3c70 commit 31149a5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+4633
-0
lines changed
 

‎bin/utils/ensure-up-to-date

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ sleep 5
3333
./bin/openapi3/haskell-http-client-petstore.sh > /dev/null 2>&1
3434
./bin/csharp-petstore.sh > /dev/null 2>&1
3535
./bin/meta-codegen.sh > /dev/null 2>&1
36+
./bin/utils/export_docs_generators.sh > /dev/null 2>&1
3637

3738
# Check:
3839
if [ -n "$(git status --porcelain)" ]; then

‎bin/utils/export_docs_generators.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
3+
SCRIPT="$0"
4+
echo "# START SCRIPT: $SCRIPT"
5+
6+
executable="./modules/openapi-generator-cli/target/openapi-generator-cli.jar"
7+
8+
for GENERATOR in $(java -jar $executable list --short | sed -e 's/,/\'$'\n''/g')
9+
do
10+
./bin/utils/export_generator.sh $GENERATOR
11+
done

0 commit comments

Comments
 (0)
Please sign in to comment.