diff options
author | nick <nick@debian.hws.edu> | 2009-04-20 20:42:50 -0500 |
---|---|---|
committer | nick <nick@debian.hws.edu> | 2009-04-20 20:42:50 -0500 |
commit | fe64019b96d68ef6520c5fa049d358fa8043d96b (patch) | |
tree | f5cfcbbed1258c3ff7ef97474dd2e77029a31b54 /includes | |
parent | 8b5042f40a04da5ecb01a28029ad8121b27a0de4 (diff) | |
download | gemrb-gameinstallers-fe64019b96d68ef6520c5fa049d358fa8043d96b.tar.bz2 gemrb-gameinstallers-fe64019b96d68ef6520c5fa049d358fa8043d96b.zip |
Small tweaks to allow the 3CD TOTSC installer to succeed.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/generic-includes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/generic-includes.sh b/includes/generic-includes.sh index d4dcdb4..97926f0 100644 --- a/includes/generic-includes.sh +++ b/includes/generic-includes.sh @@ -69,7 +69,7 @@ function setperms find "$1" -type f -exec chmod 644 '{}' \; find "$1" -type f -iname '*.exe' -exec chmod 755 '{}' \; find "$1" -type f -iname '*.ini' -exec chmod 664 '{}' \; - chgrp -R games "$1" + chgrp -R games "$1" > /dev/null # fail silently if you don't use a games group. if [ -d "$1"/save ]; then chmod -R g+w "$1"/save fi |