apt-setup: test fix for non-applied file changes.

This commit is contained in:
Ark74 2025-08-25 14:49:48 -06:00
parent 677854292f
commit 1f503fb465
2 changed files with 8 additions and 2 deletions

View file

@ -113,9 +113,15 @@ Components: main
Signed-By: ${SIGNED_BY}
EOF
{
echo "deb ${uri} ${codename} main"
echo "deb ${uri} ${codename}-updates main"
echo "deb ${uri} ${codename}-security main"
} >> "$file"
# Keep the legacy file and the pipeline temp file as a single breadcrumb line
printf '%s\n' "$MSG" > "$LEGACY"
printf '%s\n' "$MSG" > "$file"
printf '%s\n' "$MSG" >> "$file"
exit 0