Skip to content

Commit

Permalink
Prefix rr binary permissions with 0 to specify it as an octal value (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan-Buth authored Nov 9, 2022
1 parent 634dfc1 commit 33646e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/Concerns/InstallsRoadRunnerDependencies.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ protected function downloadRoadRunnerBinary()
fn ($type, $buffer) => $this->output->write($buffer)
);

chmod(base_path('rr'), 755);
chmod(base_path('rr'), 0755);

$this->line('');
}
Expand Down

0 comments on commit 33646e9

Please sign in to comment.