remove mobile workaround

This commit is contained in:
Charlotte 2025-12-27 20:08:25 -05:00 committed by GitHub
parent 46b71b87df
commit 8614fa23dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -746,12 +746,6 @@ func archiveBasename(arch string, archiveVersion string) string {
if arch == "arm" {
platform += os.Getenv("GOARM")
}
if arch == "android" {
platform = "android-all"
}
if arch == "ios" {
platform = "ios-all"
}
return platform + "-" + archiveVersion
}