From: Doug Coleman Date: Thu, 27 Aug 2020 21:43:38 +0000 (-0500) Subject: build.sh: Fix boot image download to current branch. X-Git-Tag: 0.99~3109 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=ec490587e7e4413736e25104cfd9be3da551c191 build.sh: Fix boot image download to current branch. --- diff --git a/build.sh b/build.sh index edf7ddccfa..b99f43af03 100755 --- a/build.sh +++ b/build.sh @@ -627,8 +627,8 @@ set_boot_image_vars() { CHECKSUM_URL="$url" BOOT_IMAGE_URL="http://downloads.factorcode.org/images/${CURRENT_BRANCH}/${BOOT_IMAGE}" else - CHECKSUM_URL="http://downloads.factorcode.org/images/master/checksums.txt" - BOOT_IMAGE_URL="http://downloads.factorcode.org/images/master/${BOOT_IMAGE}" + CHECKSUM_URL="http://downloads.factorcode.org/images/${CURRENT_BRANCH}/checksums.txt" + BOOT_IMAGE_URL="http://downloads.factorcode.org/images/${CURRENT_BRANCH}/${BOOT_IMAGE}" fi }