Created
April 11, 2020 21:20
-
-
Save itinance/74a8486d06ca34d6ff3f7f21334e330c to your computer and use it in GitHub Desktop.
Fix Swagger Files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# (C) 2020 Hagen Huebel, ITinance GmbH https://itinance.com, dedified GmbH https://dedified.io | |
# All rights reserved. | |
# fix-swagger-models | |
# swaggo/swag has a bug that will prevent renaming of Models from "model.Account" ino "Account" | |
# we are going to fix this generation with this command | |
# the "-i ''" is a fix for sed required on Mac to avoid the auto-creation of backup-files | |
if [ "$(uname)" == "Darwin" ]; then | |
sed -i '' -e 's/model\.//g' docs/* | |
else | |
sed -i -e 's/model\.//g' docs/* | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment