scripts/fdroid-pr.sh: fix version name log message

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-29 12:47:21 +02:00
parent bcf919fcbb
commit 0e3b645695
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ fi
VERSION_NAME=$(apkanalyzer manifest print "${APK_FILE}" | awk -F'"' '/android:versionName/{print $2}')
if [[ -n "${VERSION_NAME}" ]]; then
log_data "Version Code: ${VERSION_NAME}"
log_data "Version Name: ${VERSION_NAME}"
else
log_warning "Failed to find version name." >&2; exit 1
fi