Commit 369cf003 authored by Michele Carignani's avatar Michele Carignani
Browse files

fixed typo

parent 576f8176
......@@ -4,10 +4,10 @@ specfiles=$(ls | egrep "^[^.]*Api.(json|yaml)")
fres=0
for i in $specfiles ; do
echo "-- Validatingand linting OpenAPI file $i..."
swagger-cli validate $i
echo "-- Validating and linting OpenAPI file $i..."
swagger-cli validate "$i"
res=$?
speccy lint $i
speccy lint "$i"
res2=$?
fres=$(($fres||$res||$res2))
echo "--- Validator returned $res, linter returned $res2."
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment