diff options
author | Menno Duursma <druiloor@zonnet.nl> | 2010-05-13 00:39:46 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 00:39:46 +0200 |
commit | e57f37f3c1d9976a6eb1db3388507589b29e7836 (patch) | |
tree | b788344552078a63f7809686ca31fd48dc0bf751 /system/cdcopy/doinst.sh | |
parent | b1932fbddcd03976b3682d0c6a995fca0e7e187e (diff) | |
download | slackbuilds-e57f37f3c1d9976a6eb1db3388507589b29e7836.tar.gz |
system/cdcopy: Updated for version 0.0.7
Diffstat (limited to 'system/cdcopy/doinst.sh')
-rw-r--r-- | system/cdcopy/doinst.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/system/cdcopy/doinst.sh b/system/cdcopy/doinst.sh index 86513b326d..1394e73287 100644 --- a/system/cdcopy/doinst.sh +++ b/system/cdcopy/doinst.sh @@ -1,15 +1,14 @@ config() { NEW="$1" - OLD="`dirname $NEW`/`basename $NEW .new`" + 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 + 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 etc/cdcopy.conf.new |