forked from loafle/openapi-generator-original
11 lines
269 B
Bash
Executable File
11 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SCRIPT="$0"
|
|
echo "# START SCRIPT: $SCRIPT"
|
|
|
|
executable="./modules/openapi-generator-cli/target/openapi-generator-cli.jar"
|
|
|
|
for GENERATOR in $(java -jar $executable list --short | sed -e 's/,/\'$'\n''/g')
|
|
do
|
|
./bin/utils/export_generator.sh $GENERATOR
|
|
done |