Skip to content

Commit 33646e9

Browse files
authored
Prefix rr binary permissions with 0 to specify it as an octal value (#611)
1 parent 634dfc1 commit 33646e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Concerns/InstallsRoadRunnerDependencies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ protected function downloadRoadRunnerBinary()
171171
fn ($type, $buffer) => $this->output->write($buffer)
172172
);
173173

174-
chmod(base_path('rr'), 755);
174+
chmod(base_path('rr'), 0755);
175175

176176
$this->line('');
177177
}

0 commit comments

Comments
 (0)