Skip to content

Commit faf8faa

Browse files
committed
fix - x64 needed to be remapped to amd64.
Signed-off-by: Bill Maxwell <cloudnautique@users.noreply.github.com>
1 parent 8eae7e8 commit faf8faa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/install-binary.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ const platform = process.platform;
4343
let arch = process.arch;
4444
if (process.platform === 'darwin') {
4545
arch = 'universal';
46+
} else if (process.arch === 'x64') {
47+
arch = 'amd64';
4648
}
4749

4850
let gptscriptBinaryName = 'gptscript';

0 commit comments

Comments
 (0)