blob: bf1622e748f0c0e9f8e5f957cf5e7fa1b293cd46 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi
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
}
config usr/share/games/mangband/lib/edit/artifact.txt.new
config usr/share/games/mangband/lib/edit/ego_item.txt.new
config usr/share/games/mangband/lib/edit/flavor.txt.new
config usr/share/games/mangband/lib/edit/limits.txt.new
config usr/share/games/mangband/lib/edit/monster.txt.new
config usr/share/games/mangband/lib/edit/object.txt.new
config usr/share/games/mangband/lib/edit/p_class.txt.new
config usr/share/games/mangband/lib/edit/p_hist.txt.new
config usr/share/games/mangband/lib/edit/p_race.txt.new
config usr/share/games/mangband/lib/edit/terrain.txt.new
config usr/share/games/mangband/lib/edit/vault.txt.new
|