summaryrefslogtreecommitdiffstats
path: root/games/ffgo/doinst.sh
blob: fecaef1312f42e94e5e029ab86764ea67e0f1cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
config() {
  NEW="$1"
  OLD="$(dirname $NEW)/$(basename $NEW .new)"
  if [ ! -r $OLD ]; then
    mv $NEW $OLD
  elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
    rm $NEW
  fi
}

CONF=/usr/libLIBDIRSUFFIX/pythonPY3VER/site-packages/ffgo/data/config

for conf in $CONF/*.new ; do
  config ${conf}
done