]> sipb.mit.edu Git - snippets/.git/commitdiff
git-hooks: Support specifying a zephyr instance
authorGeoffrey Thomas <geofft@mit.edu>
Sat, 14 Feb 2009 22:20:55 +0000 (17:20 -0500)
committerGeoffrey Thomas <geofft@mit.edu>
Sat, 14 Feb 2009 22:20:55 +0000 (17:20 -0500)
Signed-off-by: Geoffrey Thomas <geofft@mit.edu>
git-hooks/zephyr-post-receive

index 0b2fde4f8423affaf110af914d8175df25626fe0..f148d17e8ffa112764f42808660a725944f1992b 100755 (executable)
@@ -8,6 +8,7 @@
 #  aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master
 
 class=`git config zephyr.class`
+instance=`git config zephyr.instance`
 zsig=`git config zephyr.zsig`
 if [ -z "$class" ]; then
   echo "I don't know where to send a commit zephyr!" >&2
@@ -24,6 +25,6 @@ while read oldrev newrev refname; do
      sed "s/\e\[33m/@color(yellow)/g" |
      sed "s/\e\[31m/@color(red)/g" |
      sed "s/\e\[32m/@color(green)/g") |
-    zwrite -c "$class" -i "$shortrev" -s "$zsig: $refname" -d
+    zwrite -c "$class" -i "${instance:-$shortrev}" -s "${zsig:-Git}: $refname" -d
   done
 done