mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 10:58:55 +00:00
394840e352
* add line break test to petstore-security-test.yaml * add objc/swift security testing * add go,scala,qt5cpp for security test * add security test for typescript * fix go security issue, fix consumes,produces line break
16 lines
261 B
Bash
Executable File
16 lines
261 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
for SCRIPT in ./bin/security/*.sh
|
|
do
|
|
if [ -f $SCRIPT -a -x $SCRIPT ]
|
|
then
|
|
$SCRIPT
|
|
rc=$?
|
|
if [[ $rc != 0 ]]
|
|
then
|
|
echo "ERROR!! FAILED TO RUN $SCRIPT"
|
|
exit $rc;
|
|
fi
|
|
fi
|
|
done
|