aboutsummaryrefslogtreecommitdiff
path: root/puppet/bin/post-receive
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2020-10-01 15:02:47 -0300
committerSilvio Rhatto <rhatto@riseup.net>2020-10-01 15:02:47 -0300
commit765ca2bd25384c3d33d243a5b2f0aa419edcd8fa (patch)
treeb59aa15319607ea45ba83516628539b420d8841b /puppet/bin/post-receive
parentb0d7b1d90860f858578455c5cf695c062c0ade07 (diff)
parentc212514035cffd38acbfac1413064937b28685b6 (diff)
downloadsemanticscuttle-765ca2bd25384c3d33d243a5b2f0aa419edcd8fa.tar.gz
semanticscuttle-765ca2bd25384c3d33d243a5b2f0aa419edcd8fa.tar.bz2
Merge commit 'c212514035cffd38acbfac1413064937b28685b6' as 'puppet'
Diffstat (limited to 'puppet/bin/post-receive')
-rwxr-xr-xpuppet/bin/post-receive17
1 files changed, 17 insertions, 0 deletions
diff --git a/puppet/bin/post-receive b/puppet/bin/post-receive
new file mode 100755
index 0000000..e6baa07
--- /dev/null
+++ b/puppet/bin/post-receive
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+cd ..
+unset GIT_DIR
+
+if [ -d ".git/annex" ]; then
+ git annex sync
+else
+ #git reset HEAD
+ git checkout -f
+fi
+
+git submodule sync --recursive
+git submodule update --init --recursive
+
+cd -
+exec git update-server-info