diff options
| -rwxr-xr-x | rfc.sh | 6 | 
1 files changed, 3 insertions, 3 deletions
@@ -7,15 +7,15 @@ branch="release-3.5";  set_hooks_commit_msg()  {      f=".git/hooks/commit-msg"; -    u="http://review.gluster.com/tools/hooks/commit-msg"; +    u="http://review.gluster.org/tools/hooks/commit-msg";      if [ -x "$f" ]; then          return;      fi -    curl -o $f $u || wget -O $f $u; +    curl -L -o $f $u || wget -O $f $u; -    chmod +x .git/hooks/commit-msg; +    chmod +x $f      # Let the 'Change-Id: ' header get assigned on first run of rfc.sh      GIT_EDITOR=true git commit --amend;  | 
