From f5bfb0c25bde939dbbc585151dfc029ebc09b714 Mon Sep 17 00:00:00 2001 From: Kaleb S KEITHLEY Date: Fri, 15 Jan 2016 07:32:02 -0500 Subject: build: update link for .git/hooks/commit-msg Add -L option to curl cmd to follow a redirect Signed-off-by: Kaleb S KEITHLEY --- rfc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rfc.sh') diff --git a/rfc.sh b/rfc.sh index bafda37d78a..6e9bacf262f 100755 --- a/rfc.sh +++ b/rfc.sh @@ -7,15 +7,15 @@ branch="release-3.6"; 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; -- cgit