From f844c88c364058b6070488f2367cac43b2a2bd61 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Tue, 23 Dec 2025 12:38:17 +0000 Subject: [PATCH] fix: auggie maintenence --- registry/coder-labs/modules/auggie/scripts/install.sh | 7 +++---- registry/coder-labs/modules/auggie/scripts/start.sh | 4 ---- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/registry/coder-labs/modules/auggie/scripts/install.sh b/registry/coder-labs/modules/auggie/scripts/install.sh index b2f80ebe..c59358d5 100644 --- a/registry/coder-labs/modules/auggie/scripts/install.sh +++ b/registry/coder-labs/modules/auggie/scripts/install.sh @@ -1,9 +1,5 @@ #!/bin/bash -if [ -f "$HOME/.bashrc" ]; then - source "$HOME"/.bashrc -fi - set -euo pipefail BOLD='\033[0;1m' @@ -29,6 +25,9 @@ printf "rules: %s\n" "$ARG_AUGGIE_RULES" echo "--------------------------------" function check_dependencies() { + + printf "PATH: %s\n" "${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 diff --git a/registry/coder-labs/modules/auggie/scripts/start.sh b/registry/coder-labs/modules/auggie/scripts/start.sh index 4de4d829..ca427330 100644 --- a/registry/coder-labs/modules/auggie/scripts/start.sh +++ b/registry/coder-labs/modules/auggie/scripts/start.sh @@ -1,9 +1,5 @@ #!/bin/bash -if [ -f "$HOME/.bashrc" ]; then - source "$HOME"/.bashrc -fi - set -euo pipefail command_exists() {