X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=tools%2Finitial.sh;h=eafc9c13872c42e689ec597ffb0d503b97991f6c;hb=1293ddd65713d6551775b67169387622ada477c1;hp=c183d014e3daa87ee8292a2ebc24a134746619db;hpb=8e5ea23201033f25323db1f8604a8860129c017a;p=fw%2Fopenocd diff --git a/tools/initial.sh b/tools/initial.sh index c183d014e..eafc9c138 100755 --- a/tools/initial.sh +++ b/tools/initial.sh @@ -11,7 +11,7 @@ add_remote() { remote_exist=`grep remote .git/config | grep review | wc -l` if [ "x$remote_exist" = "x0" ] ; then - git remote add review ssh://$USERNAME@openocd.zylin.com:29418/openocd.git + git remote add review ssh://$USERNAME@review.openocd.org:29418/openocd.git git config remote.review.push HEAD:refs/for/master else echo "Remote review exists" @@ -20,12 +20,12 @@ add_remote() update_commit_msg() { - cd ${TOPDIR}/.git/hooks + cd "${TOPDIR}/.git/hooks" save_file=commit-msg-`date +%F-%T` mv commit-msg $save_file printf "%-30s" "Updating commit-msg" status="OK" - wget -o log http://openocd.zylin.com/tools/hooks/commit-msg || status="FAIL" + wget -o log https://review.openocd.org/tools/hooks/commit-msg || status="FAIL" echo $status if [ $status = "FAIL" ] ; then mv $save_file commit-msg