From ad51b135bd78aabbd8d1c4977390f98d7d493af7 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 29 Dec 2015 20:38:13 +0100 Subject: [PATCH] Use git.openstack.org git.openstack.org is our official repo, use that instead of the github mirror which might be outdated. Change-Id: I03f587de27bb4b7d4fd851753a0e44bcdaf19e46 --- repo_tarball_diff.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo_tarball_diff.sh b/repo_tarball_diff.sh index 162e4c7..a7cc0b8 100755 --- a/repo_tarball_diff.sh +++ b/repo_tarball_diff.sh @@ -29,7 +29,7 @@ if [ $# -lt 2 ]; then fi TMPDIR=`mktemp -d` -git clone -b $2 https://github.com/openstack/$1 $TMPDIR/repo || error "clone failed" +git clone -b $2 https://git.openstack.org/openstack/$1 $TMPDIR/repo || error "clone failed" cd $TMPDIR/repo git archive -o $TMPDIR/repo.tar HEAD tar tf $TMPDIR/repo.tar | sort -g > $TMPDIR/repo.contents