From 6883f67b74ed7c6747497b15c3ba68a44c205819 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Mon, 4 Aug 2025 23:55:06 -0500 Subject: [PATCH] fix: ensure utilities are sourced before execution --- scripts/30-install-packages.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/30-install-packages.sh b/scripts/30-install-packages.sh index 3b50169..52a1e36 100644 --- a/scripts/30-install-packages.sh +++ b/scripts/30-install-packages.sh @@ -5,6 +5,7 @@ set -euo pipefail # Source utilities SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +source "$SCRIPT_DIR/utils.sh" # Run module when called directly if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then