Skip to content

Commit

Permalink
api-reference: fix order of versions on main page
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Bednar <[email protected]>
  • Loading branch information
lukas-bednar committed Jan 11, 2019
1 parent 80ee386 commit 3d4c034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/gen-swagger-doc/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Content of this repository is generated from OpenAPI specification of
* [master](${GITHUB_IO_FQDN}/master/index.html)
__EOF__
find * -type d -regex "^v[0-9.]*" \
-exec echo "* [{}](${GITHUB_IO_FQDN}/{}/index.html)" \; >>README.md
-exec echo "* [{}](${GITHUB_IO_FQDN}/{}/index.html)" \; | sort -r --version-sort -t '[' --key 2 >>README.md

git config --global user.email "[email protected]"
git config --global user.name "Travis CI"
Expand Down

0 comments on commit 3d4c034

Please sign in to comment.