forked from loafle/openapi-generator-original
* Add petstore config * Expand lambda to allow formatting of partials * Fix order of operation with parenthesis * Fix not exposing needed enum to string converters * Add support for form params including files * Add generated petstore client * Regenerate existing elm client * Add script that all files compile successfully * Remove old unmaintained petstore client * Add pipeline to try and compile elm clients
15 lines
270 B
Bash
Executable File
15 lines
270 B
Bash
Executable File
#!/bin/bash -e
|
|
# elm make all elm files under src
|
|
|
|
for ELM in `find src -name "*.elm"`
|
|
do
|
|
echo "Compiling $ELM"
|
|
elm make $ELM --output /dev/null
|
|
rc=$?
|
|
if [[ $rc != 0 ]]
|
|
then
|
|
echo "ERROR!! FAILED TO COMPILE $ELM"
|
|
exit $rc;
|
|
fi
|
|
done
|