Cope with renamed version => flightgear-version file.

This commit is contained in:
Julian Smith
2020-07-03 09:27:07 +01:00
committed by Automatic Release Builder
parent 72edacaaad
commit aec7fcf83a
6 changed files with 8 additions and 8 deletions

View File

@@ -42,8 +42,8 @@ NEXT_MINOR_VERSION=${VERSION_A[1]}
setVersionTo() {
local V="$1"
echo "setting version to $V"
echo "$V" > version
git add version
echo "$V" > flightgear-version
git add flightgear-version
echo "new version: $V" | git commit --file=-
# git tag "version/$V"
}

View File

@@ -34,8 +34,8 @@ MICRO_VERSION=${VERSION_A[2]}
setVersionTo() {
local V="$1"
echo "setting version to $V"
echo "$V" > version
git add version
echo "$V" > flightgear-version
git add flightgear-version
echo "new version: $V" | git commit --file=-
git tag "version/$V"
}