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 7376ca8 commit 93380a2Copy full SHA for 93380a2
postinstall.js
@@ -35,7 +35,11 @@ const installWindowsBinary = () => {
35
36
switch (process.platform) {
37
case "linux":
38
- installMacLinuxBinary("rewatch-linux");
+ if (process.arch === "arm64") {
39
+ installMacLinuxBinary("rewatch-linux-arm64");
40
+ } else {
41
+ installMacLinuxBinary("rewatch-linux");
42
+ }
43
break;
44
case "darwin":
45
installMacLinuxBinary("rewatch-macos");
0 commit comments