Commit:    8e826dd710ddcbc2464f5e978f1f2a4105a66d7d
Author:    Alexander Moskaliov <ir...@php.net>         Sat, 24 Mar 2012 
15:03:27 +0400
Parents:   31ccabcd4f9c19844192f3b7fa72c2bbaf2ed6b7
Branches:  master

Link:       
http://git.php.net/?p=karma.git;a=commitdiff;h=8e826dd710ddcbc2464f5e978f1f2a4105a66d7d

Log:
fix one line ref bug

Changed paths:
  M  hooks/post-receive


Diff:
8e826dd710ddcbc2464f5e978f1f2a4105a66d7d
diff --git a/hooks/post-receive b/hooks/post-receive
index 74fce6b..2045e42 100755
--- a/hooks/post-receive
+++ b/hooks/post-receive
@@ -1,5 +1,5 @@
 #!/bin/sh
 in=$(cat)
-[ -f 'hooks/post-receive.mail' ]    && (echo $in | hooks/post-receive.mail )
-[ -f 'hooks/post-receive.bugsweb' ] && (echo $in | hooks/post-receive.bugsweb )
+[ -f 'hooks/post-receive.mail' ]    && (echo "$in" | hooks/post-receive.mail )
+[ -f 'hooks/post-receive.bugsweb' ] && (echo "$in" | 
hooks/post-receive.bugsweb )
 [ -f 'hooks/post-receive.mirror' ]  && hooks/post-receive.mirror


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to