Skip to content

Commit 69a7f9b

Browse files
Fix binary file permissions (#42)
This updates permissions to be -rwxrwxrwx Previously ---s-ws-wT
1 parent a9be207 commit 69a7f9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/TypeScriptBinaryFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,6 @@ private function downloadAndExtract(string $binaryName): void
138138
$progressBar?->finish();
139139
$this->output->writeln('');
140140

141-
chmod($this->binaryDownloadDir.'/'.$binaryName, 7770);
141+
chmod($this->binaryDownloadDir.'/'.$binaryName, 0777);
142142
}
143143
}

0 commit comments

Comments
 (0)