From 312dfd680c7c57b62baac49b2fe1d653dd5bfef9 Mon Sep 17 00:00:00 2001 From: Howard20181 <40033067+Howard20181@users.noreply.github.com> Date: Fri, 26 Aug 2022 02:45:32 +0800 Subject: [PATCH] Update artifact name --- scripts/run.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/run.sh b/scripts/run.sh index 84b3ecf..0cf101f 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -638,7 +638,11 @@ else if [ "$GAPPS_VARIANT" != "pico" ] && [ $GAPPS_BRAND = "OpenGApps" ]; then echo ":warning: Since OpenGApps doesn't officially support Android 12.1 yet, lock the variant to pico!" fi - name2="-GApps-${GAPPS_VARIANT}" + if [ $GAPPS_BRAND = "OpenGApps" ]; then + name2="-$GAPPS_BRAND-${GAPPS_VARIANT}" + else + name2="-$GAPPS_BRAND" + fi fi artifact_name="WSA${name1}${name2}_${WSA_VER}_${ARCH}_${WSA_REL}" echo "$artifact_name"