diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-08-08 14:03:27 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-08-08 14:03:27 -0300 |
commit | d18d55d0c42c2e12739ff96627a28d34955fe83e (patch) | |
tree | eb51470f9e698bf73d0af878631286041f019e35 | |
parent | 1e381c5335b451a493a333b9639774e3d991a4de (diff) | |
download | templates-d18d55d0c42c2e12739ff96627a28d34955fe83e.tar.gz templates-d18d55d0c42c2e12739ff96627a28d34955fe83e.tar.bz2 |
Adds ikiwiki post-receive hook
-rwxr-xr-x | ikiwiki/bin/post-receive | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ikiwiki/bin/post-receive b/ikiwiki/bin/post-receive new file mode 100755 index 0000000..7411db5 --- /dev/null +++ b/ikiwiki/bin/post-receive @@ -0,0 +1,7 @@ +#!/bin/sh + +cd .. +unset GIT_DIR + +git checkout -f +git submodule update --init |