Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / files / fix_game_perms.sh
diff --git a/scripts/files/fix_game_perms.sh b/scripts/files/fix_game_perms.sh
deleted file mode 100644 (file)
index 9d21480..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-# fixes the permissions of files in the local games directory so that
-# everyone can run or read them if the owner could.
-
-sudo find /home/games -type f -perm /100 -exec chmod a+x {} ';'
-sudo find /home/games -type f -perm /400 -exec chmod a+r {} ';'
-
-sudo find /home/games -type d -exec chmod a+rx {} ';'
-