fix: auggie maintenence

This commit is contained in:
35C4n0r 2025-12-23 12:38:17 +00:00
parent 36089612ef
commit f844c88c36
2 changed files with 3 additions and 8 deletions

View File

@ -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

View File

@ -1,9 +1,5 @@
#!/bin/bash
if [ -f "$HOME/.bashrc" ]; then
source "$HOME"/.bashrc
fi
set -euo pipefail
command_exists() {