2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-11-09 19:10:30 +00:00

CommonInstaller: show whether it's a snapshot build

This commit is contained in:
Christopher Roy Bratusek 2019-10-08 21:20:50 +02:00
parent f20fdc452c
commit 895a463e8a

View File

@ -204,7 +204,13 @@ show_banner () {
ui_print " > OsmAnd package " ui_print " > OsmAnd package "
;; ;;
esac esac
ui_print " ${VERSION} "
if [ "${ZIP}" == *${VERSION}* ]; then
ui_print " ${VERSION} "
else
ui_print " ${VERSION} (snapshot) "
fi
ui_print "*****************************" ui_print "*****************************"
ui_print " " ui_print " "
} }