From 6aad810e26d431cda35d53ae27e8735607fbe3e4 Mon Sep 17 00:00:00 2001 From: Audrius Kažukauskas Date: Sun, 3 Jul 2011 13:54:58 -0400 Subject: python/hg-git: Added (Mercurial to Git extension) Signed-off-by: dsomero --- python/hg-git/doinst.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 python/hg-git/doinst.sh (limited to 'python/hg-git/doinst.sh') diff --git a/python/hg-git/doinst.sh b/python/hg-git/doinst.sh new file mode 100644 index 0000000000..a23ea45833 --- /dev/null +++ b/python/hg-git/doinst.sh @@ -0,0 +1,14 @@ +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/mercurial/hgrc.d/hggit.rc.new -- cgit v1.2.3-80-g2a13