This script expects the version number from either the annotated git tag ( call_git_describe()
), or searches for the version number in a file named RELEASE-VERSION
. It fails because none of these two things are found, so fix one of them.
Run this in your project to create an annotated tag for the current commit:
git tag 1.0 -m "this is version 1.0"
I prefer tagging for version control, but the version in the text file is also good, YMMV.
source share