summaryrefslogtreecommitdiff
path: root/script/update
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-10-21 01:29:54 +0100
committerLeah Rowe <leah@libreboot.org>2023-10-21 02:08:12 +0100
commit23958f4eae4ecf23c2048f5df20221e94165fff6 (patch)
treefbc5a39a7bf4b0dbaf5eb92f431a4f969c967673 /script/update
parent79c8dc46558cfc271d8c733f3d7c6065c3d4e25b (diff)
Libreboot 2023102120231021
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update')
-rwxr-xr-xscript/update/release8
1 files changed, 5 insertions, 3 deletions
diff --git a/script/update/release b/script/update/release
index d6bb9b7b..d9dd9789 100755
--- a/script/update/release
+++ b/script/update/release
@@ -80,8 +80,10 @@ build_release()
)
for _xgcc in "${vdir}/crossgcc/"*; do
[ -d "${_xgcc}" ] || continue
- mv "${_xgcc}" \
- "${srcdir}/src/coreboot/${_xgcc##*/}/util/crossgcc/tarballs" \
+ mkdir -p "${srcdir}/src/coreboot/${_xgcc##*/}/util/crossgcc/tarballs" || \
+ err "!mkdir src/coreboot/${_xgcc##*/}/util/crossgcc/tarballs"
+ mv "${_xgcc}/"* \
+ "${srcdir}/src/coreboot/${_xgcc##*/}/util/crossgcc/tarballs/" \
|| err "!move xgcc tarballs to ${srcdir}/xgcc/${_xgcc##*/}"
done
rm -Rf "${vdir}/crossgcc" || err "!rm -Rf \"${vdir}/crossgcc\""
@@ -259,7 +261,7 @@ mktarball()
[ "${2%/*}" = "${2}" ] || x_ mkdir -p "${2%/*}"
if [ "${tar_implementation% *}" = "tar (GNU tar)" ]; then
tar --sort=name --owner=root:0 --group=root:0 \
- --mtime="UTC 2023-10-14" -c "${1}" | xz -T0 -9e > "${2}" || \
+ --mtime="UTC 2023-10-21" -c "${1}" | xz -T0 -9e > "${2}" || \
err "mktarball 1, ${1}"
else
# TODO: reproducible tarballs on non-GNU systems