Skip to content

Commit

Permalink
fix(path): update Soar path for linux-amd64
Browse files Browse the repository at this point in the history
- Updated Soar path in HasSoarPath trait to use linux-amd64 binary instead of linux-arm64 binary.
- The change was necessary to ensure that the correct binary is used on linux systems.
- The update was made in the HasSoarPath trait.
  • Loading branch information
guanguans committed Jul 23, 2023
1 parent 6ecedc0 commit f8ee9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concerns/HasSoarPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ private function getDefaultSoarPath(): string
return OS::isArm() ? __DIR__.'/../../bin/soar.darwin-arm64' : __DIR__.'/../../bin/soar.darwin-amd64';
}

return OS::isArm() ? __DIR__.'/../../bin/soar.linux-arm64' : __DIR__.'/../../bin/soar.linux-arm64'; // @codeCoverageIgnore
return OS::isArm() ? __DIR__.'/../../bin/soar.linux-arm64' : __DIR__.'/../../bin/soar.linux-amd64'; // @codeCoverageIgnore
}
}

0 comments on commit f8ee9f4

Please sign in to comment.