Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(oven): fix stale Fedora base image — fedac→fedora CDN name mismatch

os-builder.mjs was reading from fedac-base-{manifest,latest}.img but
os-base-build.mjs uploads to fedora-base-{manifest,latest}.img. The /os
endpoint was always fetching the old pre-fix manifest from Feb 27.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+2 -2
+2 -2
oven/os-builder.mjs
··· 56 56 const TEMP_DIR = process.env.OS_TEMP_DIR || "/tmp"; 57 57 const BASE_IMAGE_URLS = { 58 58 fedora: process.env.FEDAC_BASE_IMAGE_URL || 59 - "https://assets-aesthetic-computer.sfo3.cdn.digitaloceanspaces.com/os/fedac-base-latest.img", 59 + "https://assets-aesthetic-computer.sfo3.cdn.digitaloceanspaces.com/os/fedora-base-latest.img", 60 60 alpine: process.env.ALPINE_BASE_IMAGE_URL || 61 61 "https://assets-aesthetic-computer.sfo3.cdn.digitaloceanspaces.com/os/alpine-base-latest.img", 62 62 }; 63 63 const MANIFEST_URLS = { 64 64 fedora: process.env.FEDAC_MANIFEST_URL || 65 - "https://assets-aesthetic-computer.sfo3.cdn.digitaloceanspaces.com/os/fedac-base-manifest.json", 65 + "https://assets-aesthetic-computer.sfo3.cdn.digitaloceanspaces.com/os/fedora-base-manifest.json", 66 66 alpine: process.env.ALPINE_MANIFEST_URL || 67 67 "https://assets-aesthetic-computer.sfo3.cdn.digitaloceanspaces.com/os/alpine-base-manifest.json", 68 68 };