From fad4e68cb66e2975adc7e341c5ac575499885054 Mon Sep 17 00:00:00 2001 From: Jeremy McClure Date: Sat, 1 Aug 2026 16:22:58 -0400 Subject: [PATCH] Update 1 file: bootstrap.sh --- bootstrap.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 60c50f2..d25944c 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -21,7 +21,7 @@ arch() { check_all() { local missing=() - for cmd in git curl jq fzf starship eza bat delta fastfetch dotstate; do + for cmd in zsh git curl jq fzf starship eza bat delta fastfetch dotstate; do command -v "$cmd" &>/dev/null || missing+=("$cmd") done echo "${missing[@]}" @@ -112,6 +112,7 @@ install_missing() { [bat]="bat" [delta]="git-delta" [fastfetch]="fastfetch" + [zsh]="zsh" ) local sys_pkgs=() @@ -158,6 +159,7 @@ update_repo() { info "Repository not found. Cloning..." git clone --depth=1 "$REPO_URL" "$TARGET_DIR" &>/dev/null fi + update } # --- Main ---