diff options
author | Philip Lacroix <philnx@posteo.de> | 2014-03-14 16:32:47 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-03-21 13:01:15 -0500 |
commit | 9b10df2f47d271864756879f696846e7d08e3485 (patch) | |
tree | 1d4b1f971dd82850744bf218bf1798a48aee3207 /games/fgo/doinst.sh | |
parent | a40ab1a2ef2bb7fda01fa77e27b454c52db51571 (diff) | |
download | slackbuilds-9b10df2f47d271864756879f696846e7d08e3485.tar.gz |
games/fgo: Script cleanups.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/fgo/doinst.sh')
-rw-r--r-- | games/fgo/doinst.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/games/fgo/doinst.sh b/games/fgo/doinst.sh index 9204f9027b..ef3899e8dd 100644 --- a/games/fgo/doinst.sh +++ b/games/fgo/doinst.sh @@ -1,21 +1,16 @@ config() { NEW="$1" OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: if [ ! -r $OLD ]; then mv $NEW $OLD elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy rm $NEW fi - # Otherwise, we leave the .new copy for the admin to consider... } -CONFIG=${CONFIG:-/opt/fgo/data/config} -for lang in de en es fr it pl ; do - config $CONFIG/config_${lang}.new +for conf in /opt/fgo/data/config/* ; do + config ${conf} done -config $CONFIG/presets.new if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 |