From e6031d25280af31e740ebea570cb5963f07c98e4 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Tue, 30 Mar 2021 17:03:48 +0100 Subject: [PATCH] Change distribution GitHub repo URL --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index be19cf1..73c36ce 100755 --- a/update.sh +++ b/update.sh @@ -3,7 +3,7 @@ set -e if [ $# -eq 0 ] ; then - echo "Usage: ./update.sh " + echo "Usage: ./update.sh " exit fi @@ -22,7 +22,7 @@ echo "Fetching and building distribution $VERSION..." # Create a temporary directory. TEMP=`mktemp -d --tmpdir distribution.XXXXXX` -git clone -b $VERSION https://github.com/docker/distribution.git $TEMP +git clone -b $VERSION https://github.com/distribution/distribution.git $TEMP docker build --build-arg GOARCH=$GOARCH --build-arg GOARM=$GOARM -t distribution-builder-$GOARCH $TEMP # Create a dummy distribution-build container so we can run a cp against it.