From 0e3b645695ef8761d25e8a0280ad9d9b888eb715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 29 Sep 2022 12:47:21 +0200 Subject: [PATCH] scripts/fdroid-pr.sh: fix version name log message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- scripts/fdroid-pr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fdroid-pr.sh b/scripts/fdroid-pr.sh index 2fe934431d..b0985d3a73 100755 --- a/scripts/fdroid-pr.sh +++ b/scripts/fdroid-pr.sh @@ -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