Skip to content

Commit

Permalink
fix(concerns): Update Soar path for Linux ARM64
Browse files Browse the repository at this point in the history
- Return correct Soar path for Linux ARM64
- Update code coverage ignore comment
  • Loading branch information
guanguans committed Jul 23, 2023
1 parent 4b2c1aa commit 51e136f
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 __DIR__.'/../../bin/soar.linux-amd64'; // @codeCoverageIgnore
return OS::isArm() ? __DIR__.'/../../bin/soar.linux-arm64' : __DIR__.'/../../bin/soar.linux-arm64'; // @codeCoverageIgnore
}
}

0 comments on commit 51e136f

Please sign in to comment.