Skip to content

Commit de67457

Browse files
committed
Fix: wrong file name of mobilelink on intel
1 parent da80d25 commit de67457

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/autify/mobile/mobilelink/installBinary.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const getOs = () => {
3131

3232
const getArch = () => {
3333
if (arch === "ia32") return "386";
34-
if (arch === "x64") return "amd64";
34+
if (arch === "x64") return "x64";
3535
if (arch === "arm64") return "arm64";
3636
throw new Errors.CLIError(`Unsupported Architecture: ${arch}`);
3737
};

0 commit comments

Comments
 (0)