File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
tools/flashpack/src/utils Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11const REPO = "commaai/vamOS" ;
2+ const IMAGES_REPO = "commaai/vamos-images" ;
23const VERSION_URL = `https://raw.githubusercontent.com/${ REPO } /master/userspace/root/VERSION` ;
34
45export interface ChunkInfo {
@@ -29,7 +30,7 @@ export async function getManifest(): Promise<ManifestEntry[]> {
2930 if ( ! versionRes . ok ) throw new Error ( `Failed to fetch version: ${ versionRes . status } ` ) ;
3031 const version = ( await versionRes . text ( ) ) . trim ( ) ;
3132
32- const manifestUrl = `https://raw.githubusercontent.com/${ REPO } /v${ version } /manifest.json` ;
33+ const manifestUrl = `https://raw.githubusercontent.com/${ IMAGES_REPO } /v${ version } /manifest.json` ;
3334 const res = await fetch ( manifestUrl ) ;
3435 if ( ! res . ok ) throw new Error ( `Failed to fetch manifest: ${ res . status } ` ) ;
3536 return res . json ( ) ;
You can’t perform that action at this time.
0 commit comments