We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe69bd commit be72e2aCopy full SHA for be72e2a
src/TypeScriptBuilder.php
@@ -74,7 +74,7 @@ private function getBuildBinary(): TypeScriptBinary
74
75
return $this->buildBinary = $this->buildBinaryPath ?
76
$typescriptBinaryFactory->getBinaryFromPath($this->buildBinaryPath) :
77
- $typescriptBinaryFactory->getBinaryFromServerSpecs(\PHP_OS, php_uname('m'), php_uname('r'));
+ $typescriptBinaryFactory->getBinaryFromServerSpecs(\PHP_OS, php_uname('m'), file_exists('/etc/alpine-release') ? 'musl' : 'gnu');
78
}
79
80
private function getWatchexecBinary(): WatcherBinary
0 commit comments