From f2ddbfbb1bbc26b66bc9232b810ac1c104a0e4db Mon Sep 17 00:00:00 2001 From: sneak Date: Sat, 29 Mar 2025 00:34:21 -0700 Subject: [PATCH] bugfix for set -euo --- updatemirror.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/updatemirror.sh b/updatemirror.sh index 01f9b9c..c3e38a5 100644 --- a/updatemirror.sh +++ b/updatemirror.sh @@ -2,10 +2,12 @@ set -euo pipefail -set -x - function apt_update_if_stale () { - [ -z "$(find /var/lib/apt/lists -type f -mmin -30 2>/dev/null)" ] && apt-get update + if ! find /var/lib/apt/lists -type f -mmin -30 | grep -q .; then + apt-get update + else + echo "Skipping apt update, metadata is fresh." > /dev/stderr + fi } function main () {