Revert "build.sh: Fix boot image download to current branch."

This reverts commit ec490587e7.

I didn't read the code, but the odds of a random branch working with master boot image are pretty low.
master
Doug Coleman 2020-08-29 18:04:11 -05:00
parent 97d828a7f5
commit 13b366e88b
1 changed files with 2 additions and 2 deletions

View File

@ -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
}