From 80c14f00ccffcd1963584d7329494839348f80c4 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 9 Nov 2015 18:08:54 -0200 Subject: Remove post-update hook --- ikiwiki/bin/post-receive | 14 +++++++++++++- ikiwiki/bin/post-update | 16 ---------------- 2 files changed, 13 insertions(+), 17 deletions(-) delete mode 100755 ikiwiki/bin/post-update (limited to 'ikiwiki') diff --git a/ikiwiki/bin/post-receive b/ikiwiki/bin/post-receive index 996189d..9c79a40 100755 --- a/ikiwiki/bin/post-receive +++ b/ikiwiki/bin/post-receive @@ -1,7 +1,19 @@ #!/bin/sh +# +# Post-receive git hook +# cd .. unset GIT_DIR -git checkout -f +if [ -d ".git/annex" ]; then + git annex sync +else + git reset HEAD + git checkout -f +fi + git submodule update --init --recursive + +cd - +exec git update-server-info diff --git a/ikiwiki/bin/post-update b/ikiwiki/bin/post-update deleted file mode 100755 index 48a6a16..0000000 --- a/ikiwiki/bin/post-update +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -cd .. -unset GIT_DIR - -if [ -d ".git/annex" ]; then - git annex sync -else - git reset HEAD - git checkout -f -fi - -git submodule update --init --recursive - -cd - -exec git update-server-info -- cgit v1.2.3