We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac9c7ad commit bde52c7Copy full SHA for bde52c7
1 file changed
certs.js
@@ -43,7 +43,11 @@ function getExe() {
43
case "darwin":
44
return "mkcert-" + MKCERT_VERSION + "-darwin-amd64"
45
case "linux":
46
- return "mkcert-" + MKCERT_VERSION + "-linux-amd64"
+ if (process.arch === "arm")
47
+ return "mkcert-" + MKCERT_VERSION + "-linux-arm"
48
+ if (process.arch === "x64")
49
+ return "mkcert-" + MKCERT_VERSION + "-linux-amd64"
50
+ /* falls through */
51
case "win32":
52
return "mkcert-" + MKCERT_VERSION + "-windows-amd64.exe"
53
default:
0 commit comments