summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-05-03 07:11:43 +0100
committerLeah Rowe <leah@libreboot.org>2024-05-03 07:11:43 +0100
commit7db2ae0bd2064db5398e3c47cdfe2b399664ef17 (patch)
tree3cdf069de73816b4089722d2b5d094a6b2842fbc /script
parentcd9685d12d2b71a00cb6766bb85f392d4db92c83 (diff)
update/release: say when an archive is being made
without this change, the user might think lbmk crashed Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/update/release3
1 files changed, 2 insertions, 1 deletions
diff --git a/script/update/release b/script/update/release
index d7b7d108..bdada97a 100755
--- a/script/update/release
+++ b/script/update/release
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
# SPDX-License-Identifier: MIT
-# SPDX-FileCopyrightText: 2020-2023 Leah Rowe <leah@libreboot.org>
+# SPDX-FileCopyrightText: 2020-2024 Leah Rowe <leah@libreboot.org>
set -u -e
@@ -216,6 +216,7 @@ mktarball()
[ "${2%/*}" = "${2}" ] || \
mkdir -p "${2%/*}" || $err "mk, !mkdir -p \"${2%/*}\""
+ printf "\nCreating archive: %s\n\n" "$2"
if [ "${tar_implementation% *}" = "tar (GNU tar)" ]; then
tar --sort=name --owner=root:0 --group=root:0 \
--mtime="UTC 2024-02-25" -c "$1" | xz -T$threads -9e \