Make post-receive executable
[sockgit.git] / templates / hooks / post-receive
old mode 100644 (file)
new mode 100755 (executable)
index 8847b24..abedfa7
@@ -1,3 +1,4 @@
-while read OLD_REV NEW_REF REF_NAME; do
+#!/bin/bash
+while read OLD_REV NEW_REV REF_NAME; do
   git push public $NEW_REV:$REF_NAME
 done