Skip to content

Commit

Permalink
really should run lint first
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Aug 25, 2022
1 parent af24053 commit 19c09fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,11 @@ class Inputs {
this.arch = "win64_msvc2017_64";
}
} else if (this.target === "android") {
if (compareVersions(this.version, ">=", "5.14.0") && compareVersions(this.version, "<", "6.0.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 19c09fc

Please sign in to comment.