From 41007a55a194305865c71b886b168e0bdb88be34 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sun, 13 Mar 2022 17:38:05 +0100 Subject: [PATCH] Reorder asset handling for ARM vs ARM64 --- .github/workflows/updater.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index 4b1818b..1985f85 100644 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -63,12 +63,12 @@ echo "Handling asset at $asset_url" # Here we base the source file name upon a unique keyword in the assets url (admin vs. update) # Leave $src empty to ignore the asset case $asset_url in - *"linux-core-arm"*) - src="app.arm" - ;; *"linux-core-arm64"*) src="app.arm64" ;; + *"linux-core-arm"*) + src="app.arm" + ;; *"linux-core-x64"*) src="app.x64" ;;