From 976691b5cb1c3c7da5b91bb7517999d19c1c22cc Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Tue, 23 Dec 2025 13:14:51 +0000 Subject: [PATCH] wip --- registry/coder-labs/modules/auggie/scripts/install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/registry/coder-labs/modules/auggie/scripts/install.sh b/registry/coder-labs/modules/auggie/scripts/install.sh index c59358d5..11a4f60d 100644 --- a/registry/coder-labs/modules/auggie/scripts/install.sh +++ b/registry/coder-labs/modules/auggie/scripts/install.sh @@ -28,6 +28,10 @@ function check_dependencies() { printf "PATH: %s\n" "${PATH}" + new_path=$(bash -l -c 'echo $PATH' 2>/dev/null || echo "${PATH}") + + printf "NEW_PATH %s\n" "${new_path}" + if ! command_exists node; then printf "Error: Node.js is not installed. Please install Node.js manually or use the pre_install_script to install it.\n" exit 1