Skip to content

Commit

Permalink
Merge branch 'master' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Aug 25, 2022
2 parents 493670d + af24053 commit 319f602
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ class Inputs {
this.arch = "win64_msvc2017_64";
}
} else if (this.target === "android") {
if (compareVersions(this.version, ">=", "5.14.0")) {
if (compareVersions(this.version, ">=", "5.14.0") && compareVersions(this.version, "<", "6.0.0")) {
this.arch = "android";
}
} else {
this.arch = "android_armv7";
}
Expand Down

0 comments on commit 319f602

Please sign in to comment.