Skip to content

Commit

Permalink
fix: add missing platform.arch for Linux and Windows (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpl authored Jul 23, 2024
1 parent 3b234b3 commit e51842d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/js/php.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ const platform = {
if (isWindows) {
platform.os = 'win';
platform.phpBinary += '.exe';
platform.arch = 'x64';
}

if (isLinux) {
platform.os = 'linux';
platform.arch = 'x64';
}

if (isDarwin) {
Expand Down

0 comments on commit e51842d

Please sign in to comment.