diff options
Diffstat (limited to 'development/tig/doinst.sh')
-rw-r--r-- | development/tig/doinst.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/development/tig/doinst.sh b/development/tig/doinst.sh index 3425313d40b3..16375e1c87a9 100644 --- a/development/tig/doinst.sh +++ b/development/tig/doinst.sh @@ -1,15 +1,11 @@ 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 etc/tigrc.new - |