From 94a168c4ef831a08af2546042a69fa98ac352e03 Mon Sep 17 00:00:00 2001 From: Dylan Buth Date: Wed, 9 Nov 2022 10:49:11 -0500 Subject: [PATCH] Prefix rr binary permissions with 0 to specify it as an octal value --- src/Commands/Concerns/InstallsRoadRunnerDependencies.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Concerns/InstallsRoadRunnerDependencies.php b/src/Commands/Concerns/InstallsRoadRunnerDependencies.php index 37a46d566..25cec0036 100644 --- a/src/Commands/Concerns/InstallsRoadRunnerDependencies.php +++ b/src/Commands/Concerns/InstallsRoadRunnerDependencies.php @@ -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(''); }