From 932f2b2d8948fe478b1ed8ce40b8da014d60c54a Mon Sep 17 00:00:00 2001 From: sneak Date: Sat, 29 Mar 2025 00:32:05 -0700 Subject: [PATCH] set -x for debugging --- updatemirror.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/updatemirror.sh b/updatemirror.sh index e8449a6..01f9b9c 100644 --- a/updatemirror.sh +++ b/updatemirror.sh @@ -2,6 +2,8 @@ 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 }