aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2021-10-31 18:38:54 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2021-10-31 18:45:35 +0100
commit9e885d861f558574335a25a1d34f84c8722616f2 (patch)
treee930b83225c5c8f083aa851fb5aed6a547608a63 /scripts
parentAlso upload "desktop stage3" (diff)
downloadreleng-9e885d861f558574335a25a1d34f84c8722616f2.tar.gz
releng-9e885d861f558574335a25a1d34f84c8722616f2.tar.bz2
releng-9e885d861f558574335a25a1d34f84c8722616f2.zip
Do not advertise a "current stage3" or a "current iso" in general
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/copy_buildsync.sh29
1 files changed, 4 insertions, 25 deletions
diff --git a/scripts/copy_buildsync.sh b/scripts/copy_buildsync.sh
index 886d3819..9f56f44a 100755
--- a/scripts/copy_buildsync.sh
+++ b/scripts/copy_buildsync.sh
@@ -152,34 +152,13 @@ process_arch() {
if [ -n "${iso_list}" ]; then
echo -e "${header}" >"${OUT_ISO}"
# Some arches produce more than one type of iso.
- # Only apply the current-iso link logic to them.
- # TODO: Should make this dynamic based on the iso list.
- case ${ARCH} in
- amd64|x86)
- rm -f current-iso
- ;;
- *)
- echo -e "${iso_list}" |awk '{print $3}' | grep "$latest_iso_date" >>${OUT_ISO}
- ln -sfT "$latest_iso_date" current-iso
- ;;
- esac
+ # So let's not advertise a current one via a symlink in general.
+ rm -f current-iso
fi
if [ -n "${stage3_list}" ]; then
echo -e "${header}" >"${OUT_STAGE3}"
-
- # In the new variant preserve code there is a better way to do this
- #echo -e "${stage3_list}" |awk '{print $3}' |grep "$latest_stage3_date" >>${OUT_STAGE3}
-
- # The "latest stage3" concept works for only a few arches -- ones that
- # do not have more than one stage3 target per arch (i.e. multilib, etc...).
- case ${ARCH} in
- amd64|arm|hppa|ppc|s390|sh|x86)
- rm -f current-stage3
- ;;
- *)
- ln -sfT "$latest_stage3_date" current-stage3
- ;;
- esac
+ # Dito for stage3
+ rm -f current-stage3
fi
# New variant preserve code