git: d54fdd16636b - main - release: Remove empty suffix from file names
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 18 Nov 2024 00:18:38 UTC
The branch main has been updated by cperciva:
URL: https://cgit.FreeBSD.org/src/commit/?id=d54fdd16636bbe6a38a5b0a636dd83cf64aa6e06
commit d54fdd16636bbe6a38a5b0a636dd83cf64aa6e06
Author: Colin Percival <cperciva@FreeBSD.org>
AuthorDate: 2024-11-18 00:06:17 +0000
Commit: Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2024-11-18 00:18:20 +0000
release: Remove empty suffix from file names
For "release" builds (as opposed to "snapshot" builds -- in this
context BETAs and RCs are "releases") ${SNAP_SUFFIX} is empty; but it
stuck into some ociimages filenames via a copy-and-paste error.
The final filenames on the download mirrors were not affected, so
this does not need to be merged to releng/14.2.
MFC after: 3 days
Sponsored by: Amazon
---
release/Makefile.mirrors | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/release/Makefile.mirrors b/release/Makefile.mirrors
index 8856389979d1..7f7c34e21077 100644
--- a/release/Makefile.mirrors
+++ b/release/Makefile.mirrors
@@ -360,8 +360,8 @@ oci-images-stage:
. endfor
. for CHECKSUM in ${CHECKSUM_FILES}
cd ${RELEASEDIR}/ociimages && \
- ${CHECKSUM:tl} ${OSRELEASE}* > CHECKSUM.${CHECKSUM}-${SNAP_SUFFIX}
- cp -p ${RELEASEDIR}/ociimages/CHECKSUM.${CHECKSUM}-${SNAP_SUFFIX} \
+ ${CHECKSUM:tl} ${OSRELEASE}* > CHECKSUM.${CHECKSUM}
+ cp -p ${RELEASEDIR}/ociimages/CHECKSUM.${CHECKSUM} \
${OCI_DIR}/Latest/CHECKSUM.${CHECKSUM}
. endfor
.endif