aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2021-10-08 14:30:21 -0700
committerGitHub <noreply@github.com>2021-10-08 14:30:21 -0700
commit950e5d414fc610a95b9bf882ef47c1409ca4d188 (patch)
tree380d208e33e87a93186ef25b7d89376236ac60ff /tools
parent5215fc52abc3d204b66a05939c5257495b940cb6 (diff)
parent52b2a4a74455337387357bda341b5cb56310e793 (diff)
downloadriscv-openocd-950e5d414fc610a95b9bf882ef47c1409ca4d188.zip
riscv-openocd-950e5d414fc610a95b9bf882ef47c1409ca4d188.tar.gz
riscv-openocd-950e5d414fc610a95b9bf882ef47c1409ca4d188.tar.bz2
Merge pull request #650 from riscv/from_upstream
From upstream
Diffstat (limited to 'tools')
-rwxr-xr-xtools/initial.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/initial.sh b/tools/initial.sh
index 446b98b..eafc9c1 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"
@@ -25,7 +25,7 @@ update_commit_msg()
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