From 13b366e88b6ed194c93831752e58d03142df74a9 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 29 Aug 2020 18:04:11 -0500 Subject: [PATCH] Revert "build.sh: Fix boot image download to current branch." This reverts commit ec490587e7e4413736e25104cfd9be3da551c191. I didn't read the code, but the odds of a random branch working with master boot image are pretty low. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index a1f0604e1b..4cda74badf 100755 --- a/build.sh +++ b/build.sh @@ -628,8 +628,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/${CURRENT_BRANCH}/checksums.txt" - BOOT_IMAGE_URL="http://downloads.factorcode.org/images/${CURRENT_BRANCH}/${BOOT_IMAGE}" + CHECKSUM_URL="http://downloads.factorcode.org/images/master/checksums.txt" + BOOT_IMAGE_URL="http://downloads.factorcode.org/images/master/${BOOT_IMAGE}" fi } -- 2.34.1