We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d3ea34 commit e805f89Copy full SHA for e805f89
src/Installer.php
@@ -10,6 +10,11 @@ public static function installBinaries()
10
11
foreach($binaryUrls as $binaryUrl) {
12
$destination = __DIR__.'/../bin/'.basename($binaryUrl);
13
+
14
+ if (file_exists($destination)) {
15
+ continue;
16
+ }
17
18
file_put_contents($destination, file_get_contents($binaryUrl));
19
chmod($destination, 0755);
20
}
0 commit comments