We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64f86ad commit 844767dCopy full SHA for 844767d
1 file changed
tools/build/package_ota.py
@@ -15,7 +15,7 @@
15
CHUNK_SIZE = 52_428_800 # 50 MB - must be under raw.githubusercontent.com's 100 MB limit
16
17
VERSION = open(ROOT / "userspace" / "root" / "VERSION").read().strip()
18
-IMAGES_URL = os.environ.get("IMAGES_URL", f"https://github.com/commaai/vamos-images/raw/v{VERSION}")
+IMAGES_URL = os.environ.get("IMAGES_URL", f"https://raw.githubusercontent.com/commaai/vamos-images/v{VERSION}")
19
20
GPT = namedtuple('GPT', ['lun', 'name', 'path', 'start_sector', 'num_sectors', 'has_ab', 'full_check'])
21
GPTS = [
0 commit comments