-
Notifications
You must be signed in to change notification settings - Fork 1k
Core Download Permissions #1753
Copy link
Copy link
Closed
Labels
Description
I really love wp-cli, but I have noticed that every time I do a core download the permissions are wrong and the new installation won't run - Apache gives errors
I typically run this to fix the permissions
find . -type d -exec chmod 755 {} ; # Change directory permissions rwxr-xr-x
find . -type f -exec chmod 644 {} ; # Change file permissions rw-r--r--
Not sure if this is a bug or if I'm missing something, but thought I would share. Thanks!
Reactions are currently unavailable