From: Silvio Rhatto Date: Mon, 9 Nov 2015 20:08:54 +0000 (-0200) Subject: Remove post-update hook X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=80c14f00ccffcd1963584d7329494839348f80c4;p=templates.git Remove post-update hook --- 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