increment_version.sh: Update sm template variant for betas

Change-Id: Ifdce2c629aff4de7d1c6225ad4f155ccb4e94d2d
This commit is contained in:
SpiritCroc 2022-08-10 12:39:53 +02:00
parent ebe5672b8a
commit 85562dd995
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ if [ "$release_type" = "test" ]; then
else
versionCode=$((previousVersionCode + 10))
# Ensure the new version code is higher than the one of the last test version
if [ -f "$HOME/fdroid/sm/data/metadata/de.spiritcroc.riotx.a.yml" ]; then
lastTestVersionCode="$(cat "$HOME/fdroid/sm/data/metadata/de.spiritcroc.riotx.a.yml"|grep versionCode|tail -n 1|sed 's|.*: ||')"
if [ -f "$HOME/fdroid/sm/data/metadata/de.spiritcroc.riotx.x.yml" ]; then
lastTestVersionCode="$(cat "$HOME/fdroid/sm/data/metadata/de.spiritcroc.riotx.x.yml"|grep versionCode|tail -n 1|sed 's|.*: ||')"
else
read -p "Enter versionCode of last test version: " lastTestVersionCode
fi