summaryrefslogtreecommitdiffstats
path: root/games/fgo/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'games/fgo/doinst.sh')
-rw-r--r--games/fgo/doinst.sh9
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