Skip to content

Commit

Permalink
QA: Fix issue with suggested ownership commands
Browse files Browse the repository at this point in the history
  • Loading branch information
netniV committed Jan 29, 2025
1 parent 1452756 commit d14cfe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2393,7 +2393,7 @@ public function processStepPermissionCheck() {
$code = '';
foreach($paths as $path => $valid) {
if (!$valid) {
$code .= sprintf("chown -R %s.%s %s<br />", $running_user, $running_user, $path);
$code .= sprintf('chown -R %s:%s %s<br />', $running_user, $running_user, $path);
}
}
} else {
Expand Down

0 comments on commit d14cfe4

Please sign in to comment.