aboutsummaryrefslogtreecommitdiff
path: root/ikiwiki/bin/post-receive
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-01-28 14:14:26 -0200
committerSilvio Rhatto <rhatto@riseup.net>2018-01-28 14:14:26 -0200
commit918c7f25f7020b01dc124600c17271d10deb54ee (patch)
tree346f11267352e5b48fd8dd7684966f4cfb5a6ede /ikiwiki/bin/post-receive
parentf8424374c43595950ccfdf35cb67c5026b4a5ae2 (diff)
downloadtemplates-918c7f25f7020b01dc124600c17271d10deb54ee.tar.gz
templates-918c7f25f7020b01dc124600c17271d10deb54ee.tar.bz2
Migrates from ikiwiki to python-sphinx
Diffstat (limited to 'ikiwiki/bin/post-receive')
-rwxr-xr-xikiwiki/bin/post-receive21
1 files changed, 0 insertions, 21 deletions
diff --git a/ikiwiki/bin/post-receive b/ikiwiki/bin/post-receive
deleted file mode 100755
index 627198d..0000000
--- a/ikiwiki/bin/post-receive
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-#
-# Post-receive git hook
-#
-
-cd ..
-unset GIT_DIR
-
-if [ -d ".git/annex" ]; then
- git annex sync
-else
- git config receive.denyCurrentBranch ignore
- #git reset HEAD
- git checkout -f
-fi
-
-git submodule sync --recursive
-git submodule update --init --recursive
-
-cd -
-exec git update-server-info