diff --git a/action/src/main.ts b/action/src/main.ts index f8a926a7..bd93700a 100644 --- a/action/src/main.ts +++ b/action/src/main.ts @@ -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"; }