X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Ffiles%2Ffix_game_perms.sh;h=9d21480842daa73cd5032e2dfe4dc7b267eabd3c;hb=0cc5b6fcc6006574092e42b5a2c3abaab626ee1c;hp=4dd7a913fab1d00f79b9dee54b759cdbca742afd;hpb=0699fb16b5fadd1ff02bc074b097dac214b77d2e;p=feisty_meow.git diff --git a/scripts/files/fix_game_perms.sh b/scripts/files/fix_game_perms.sh index 4dd7a913..9d214808 100644 --- a/scripts/files/fix_game_perms.sh +++ b/scripts/files/fix_game_perms.sh @@ -3,8 +3,8 @@ # fixes the permissions of files in the local games directory so that # everyone can run or read them if the owner could. -find /home/games -type f -perm /100 -exec chmod a+x {} ';' -find /home/games -type f -perm /400 -exec chmod a+r {} ';' +sudo find /home/games -type f -perm /100 -exec chmod a+x {} ';' +sudo find /home/games -type f -perm /400 -exec chmod a+r {} ';' -find /home/games -type d -exec chmod a+rx {} ';' +sudo find /home/games -type d -exec chmod a+rx {} ';'