Skip to content

Commit 922b236

Browse files
authored
Bump release version, future proof for arm (#5)
1 parent 17b0480 commit 922b236

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
// Project Version
8-
ext.pub_version = "0.95-1"
8+
ext.pub_version = "0.95-2"
99

1010
static def get_platform() {
1111
def platform
@@ -35,10 +35,10 @@ static def get_platform() {
3535
static def get_platform_path(platform) {
3636
if (platform == "linux-athena") {
3737
return "linux/athena"
38-
} else if (platform == "linux-raspbian") {
39-
return "linux/raspbian"
40-
} else if (platform == "linux-aarch64bionic") {
41-
return "linux/aarch64bionic"
38+
} else if (platform == "linux-arm32") {
39+
return "linux/arm32"
40+
} else if (platform == "linux-arm64") {
41+
return "linux/arm64"
4242
} else if (platform == "linux-x86") {
4343
return "linux/x86"
4444
} else if (platform == "linux-x86_64") {

0 commit comments

Comments
 (0)