diff options
author | Justin R. Miller <incanus@codesorcery.net> | 2015-06-19 12:57:42 -0700 |
---|---|---|
committer | Justin R. Miller <incanus@codesorcery.net> | 2015-06-19 12:57:42 -0700 |
commit | 18d8d4475e9911086b52b1ca44dcbfab1f3a1bb6 (patch) | |
tree | e8a15cc45514e5c971121648679ea72d801dee0f /ios/docs | |
parent | 8f8fdaad88c8acf1b1a6df135f59de7888c94e21 (diff) | |
download | qtlocation-mapboxgl-18d8d4475e9911086b52b1ca44dcbfab1f3a1bb6.tar.gz |
avoid release candidates in determining version
Diffstat (limited to 'ios/docs')
-rwxr-xr-x | ios/docs/install_docs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/docs/install_docs.sh b/ios/docs/install_docs.sh index 44722dd63f..153d4e2093 100755 --- a/ios/docs/install_docs.sh +++ b/ios/docs/install_docs.sh @@ -7,7 +7,7 @@ fi OUTPUT="/tmp/`uuidgen`" -VERSION=$( git tag --sort -v:refname | sed -n '1p' | sed 's/^v//' ) +VERSION=$( git tag --sort -v:refname | grep -v '\-rc.' | sed -n '1p' | sed 's/^v//' ) echo "Creating new docs for ${VERSION}..." echo |