summaryrefslogtreecommitdiff
path: root/git-hooks/post-receive
diff options
context:
space:
mode:
Diffstat (limited to 'git-hooks/post-receive')
-rwxr-xr-xgit-hooks/post-receive4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-hooks/post-receive b/git-hooks/post-receive
index 6164d81..b78c54d 100755
--- a/git-hooks/post-receive
+++ b/git-hooks/post-receive
@@ -5,7 +5,7 @@
# cp .ssh/git-hooks/post-receive hackers.git/hooks/
# fail on any error
-set -E
+set -e
# the ssh dir
ssh_dir=${HOME}/.ssh
@@ -15,7 +15,7 @@ git --git-dir ${ssh_dir}/.git \
--work-tree ${ssh_dir} \
pull origin master
-# secure the files
+# secure the files (sshd will refuse connections otherwise)
chmod 600 ${ssh_dir}/authorized_keys
chmod 700 ${ssh_dir}