]> gitweb.factorcode.org Git - factor.git/commitdiff
Revert "build.sh: Fix boot image download to current branch."
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 29 Aug 2020 23:04:11 +0000 (18:04 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 29 Aug 2020 23:04:19 +0000 (18:04 -0500)
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

index a1f0604e1b9c3a6685c91f9eb040768340c2c804..4cda74badf6ea986bb94bc661a32ad9fd84580d7 100755 (executable)
--- 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
 }