mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
8e6534c6c9
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
15 lines
317 B
Bash
15 lines
317 B
Bash
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
|