app-builder-bin
Advanced tools
Comparing version 3.6.0 to 3.6.1
@@ -11,6 +11,7 @@ "use strict" | ||
const platform = process.platform; | ||
const arch = process.arch | ||
if (platform === "darwin") { | ||
return path.join(__dirname, "mac", `app-builder_${process.arch}`) | ||
return path.join(__dirname, "mac", `app-builder_${arch === "x64" ? "amd64" : arch}`) | ||
} | ||
else if (platform === "win32" && process.arch == "arm64") { | ||
else if (platform === "win32" && arch === "arm64") { | ||
/** | ||
@@ -25,6 +26,6 @@ * Golang isn't available for Windows ARM64 yet, so an ARM64 binary | ||
else if (platform === "win32") { | ||
return path.join(__dirname, "win", process.arch, "app-builder.exe") | ||
return path.join(__dirname, "win", arch, "app-builder.exe") | ||
} | ||
else { | ||
return path.join(__dirname, "linux", process.arch, "app-builder") | ||
return path.join(__dirname, "linux", arch, "app-builder") | ||
} | ||
@@ -31,0 +32,0 @@ } |
{ | ||
"name": "app-builder-bin", | ||
"description": "app-builder precompiled binaries", | ||
"version": "3.6.0", | ||
"version": "3.6.1", | ||
"files": [ | ||
@@ -6,0 +6,0 @@ "*.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
126233863
28