Skip to content

Commit e4e0868

Browse files
committed
Fix 'chgrp' permission errors in deploy
1 parent 5723a06 commit e4e0868

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

deploy.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
set('rsync_src', function () {
1212
return __DIR__; // If your project isn't in the root, you'll need to change this.
1313
});
14-
set('http_group', 'kcsu');
15-
set('writable_mode', 'chgrp');
14+
set('writable_mode', 'chmod');
15+
set('writable_chmod_mode', '0775'); // Owner+Group: rwx, Others: rx (group writable)
1616
set('keep_releases', 1); // TODO: should this be 2?
1717
// Configuring the rsync exclusions.
1818
// You'll want to exclude anything that you don't want on the production server.
@@ -65,4 +65,4 @@
6565
'deploy:symlink',
6666
'deploy:unlock',
6767
'deploy:cleanup',
68-
]);
68+
]);

0 commit comments

Comments
 (0)