We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a6c9c commit 4b5ae9fCopy full SHA for 4b5ae9f
lib/tunnel_binary.js
@@ -23,7 +23,7 @@ function TunnelBinary(httpTunnelConfig, options) {
23
}
24
this.httpTunnelConfig = httpTunnelConfig;
25
this.hostOS = process.platform;
26
- this.bits = process.arch === 'x64' ? '64bit' : '32bit';
+ this.bits = process.arch === 'x64' || process.arch === 'arm64' ? '64bit' : '32bit';
27
if (this.hostOS.match(/darwin|mac os/i)) {
28
this.platform = 'mac';
29
} else if (this.hostOS.match(/mswin|msys|mingw|cygwin|bccwin|wince|emc|win32/i)) {
0 commit comments