diff options
author | nick <nick@debian.hws.edu> | 2009-04-20 20:49:57 -0500 |
---|---|---|
committer | nick <nick@debian.hws.edu> | 2009-04-20 20:49:57 -0500 |
commit | 9d7ce4e3d083c673de9a384f3ed6c7f741f38f7d (patch) | |
tree | f5c32f8b6eb592a07a23e2bf55a710d7c933e40c /includes | |
parent | fe64019b96d68ef6520c5fa049d358fa8043d96b (diff) | |
download | gemrb-gameinstallers-9d7ce4e3d083c673de9a384f3ed6c7f741f38f7d.tar.bz2 gemrb-gameinstallers-9d7ce4e3d083c673de9a384f3ed6c7f741f38f7d.zip |
Don't report chgrp errors if the games group doesn't exist.
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 97926f0..07de078 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" > /dev/null # fail silently if you don't use a games group. + chgrp -R games "$1" &> /dev/null if [ -d "$1"/save ]; then chmod -R g+w "$1"/save fi |