diff options
Diffstat (limited to 'python/codegen_python_client.sh')
-rwxr-xr-x | python/codegen_python_client.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/codegen_python_client.sh b/python/codegen_python_client.sh index 3cf79810..4cd30c44 100755 --- a/python/codegen_python_client.sh +++ b/python/codegen_python_client.sh @@ -5,7 +5,8 @@ set -o pipefail OUTPUT=`pwd`/codegen-out mkdir -p $OUTPUT -cp ../fatcat-openapi2.yml $OUTPUT/api.yml +# Strip tags, so entire API is under a single class +cat ../fatcat-openapi2.yml | grep -v "TAGLINE$" > $OUTPUT/api.yml docker run \ -v $OUTPUT:/tmp/swagger/ \ |