From a82427e436b94fcdbf9bc3d7c340710c1c58d33e Mon Sep 17 00:00:00 2001 From: Jeremy McClure Date: Sat, 1 Aug 2026 17:59:49 -0400 Subject: [PATCH] Update 2 files: bootstrap.sh, functions.zsh --- bootstrap.sh | 6 +++--- default/.config/zsh/functions.zsh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 761d0e4..ed473de 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -156,7 +156,7 @@ update_repo() { info "Repository up to date" return 0 fi - info "Repository out of date. Pulling updates..." + warn "Repository out of date. Pulling updates..." local old_sha old_sha=$(git rev-parse HEAD) git fetch origin &>/dev/null && git reset --hard origin/master &>/dev/null && git clean -fd &>/dev/null @@ -173,11 +173,11 @@ update_repo() { MISSING=($(check_all)) if [[ ${#MISSING[@]} -eq 0 ]]; then - info "all tools present" + success "All Packages Installed" update else install_missing "${MISSING[@]}" fi update_repo -info "Done Bootstrapping, run \"exec zsh\" or restart your shell" +success "Done Bootstrapping, run \"exec zsh\" or restart your shell" diff --git a/default/.config/zsh/functions.zsh b/default/.config/zsh/functions.zsh index 6bc9c93..4d3a8b2 100644 --- a/default/.config/zsh/functions.zsh +++ b/default/.config/zsh/functions.zsh @@ -33,7 +33,7 @@ dotstate_update() { return 0 fi - info "Repository out of date. Pulling updates..." + warn "Repository out of date. Pulling updates..." local old_sha old_sha=$(git rev-parse HEAD) git fetch origin &>/dev/null && git reset --hard origin/master &>/dev/null && git clean -fd &>/dev/null