From 6dc5218ab2c56a24248a46432a2d006fdca399d2 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Mon, 13 Apr 2020 20:39:15 +0200 Subject: [PATCH] buildmaster: Update URLs for haiku/buildtools. The HTTPS versions are now on review.haiku-os.org. --- buildmaster/bin/bootstrap_buildmaster.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildmaster/bin/bootstrap_buildmaster.sh b/buildmaster/bin/bootstrap_buildmaster.sh index 4095fdee..0bc0bcce 100755 --- a/buildmaster/bin/bootstrap_buildmaster.sh +++ b/buildmaster/bin/bootstrap_buildmaster.sh @@ -95,7 +95,7 @@ if [ -z "$BUILDTOOLS_DIR" ] then BUILDTOOLS_DIR="$(realpath "buildtools")" echo "Cloning buildtools repository to $BUILDTOOLS_DIR" - git clone --depth=1 https://git.haiku-os.org/buildtools "$BUILDTOOLS_DIR" + git clone --depth=1 https://review.haiku-os.org/buildtools "$BUILDTOOLS_DIR" else echo "Using existing buildtools repository in $BUILDTOOLS_DIR" fi @@ -104,7 +104,7 @@ if [ -z "$HAIKU_DIR" ] then HAIKU_DIR="$(realpath "haiku")" echo "Cloning Haiku repository to $HAIKU_DIR" - git clone --depth=1 https://git.haiku-os.org/haiku "$HAIKU_DIR" + git clone --depth=1 https://review.haiku-os.org/haiku "$HAIKU_DIR" else echo "Using existing Haiku repository in $HAIKU_DIR" fi