1
0
forked from GRIN/grim

update: fix in-app update download names (android-arm, linux tar.gz)

The in-app updater built the ARM Android download as goblin-<tag>-
android-arm.apk and the Linux download as .AppImage, but releases ship
goblin-<tag>-android-arm.apk (this build on) and a linux .tar.gz. On an
older release the ARM apk was named -android.apk, so the in-app update
404'd. Releases now name the ARM apk -android-arm.apk and the updater
targets the tar.gz, so Android and Linux in-app updates resolve.
This commit is contained in:
2ro
2026-07-02 16:59:07 -04:00
parent 8f1a955f9a
commit 5733b9a894
+1 -1
View File
@@ -75,7 +75,7 @@ impl ReleaseInfo {
if ARCH == ARM_ARCH {
None
} else {
Some(format!("goblin-{}-linux-x86_64.AppImage", self.tag_name))
Some(format!("goblin-{}-linux-x86_64.tar.gz", self.tag_name))
}
}
OperatingSystem::Mac => None,