From 6e868a560cebbd96428ba3ae1987071d55158d3b Mon Sep 17 00:00:00 2001 From: nnyyxxxx Date: Wed, 11 Sep 2024 09:17:42 -0400 Subject: [PATCH] - --- src/commands/applications-setup/mybash-setup.sh | 4 ++-- src/commands/applications-setup/neovim-setup.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/applications-setup/mybash-setup.sh b/src/commands/applications-setup/mybash-setup.sh index 85aa1c41a..41460bcf2 100644 --- a/src/commands/applications-setup/mybash-setup.sh +++ b/src/commands/applications-setup/mybash-setup.sh @@ -10,7 +10,7 @@ cloneMyBash() { } installDepend() { - printf "%b\n" "${YELLOW}Install mybash if not already installed${RC}" + echo "Install mybash if not already installed" case "$PACKAGER" in pacman) $ESCALATION_TOOL "$PACKAGER" -S --needed --noconfirm bash bash-completion tar bat tree unzip fontconfig @@ -25,7 +25,7 @@ installDepend() { $ESCALATION_TOOL "$PACKAGER" install -y bash bash-completion tar bat tree unzip fontconfig ;; *) - printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}" + printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}" # The packages above were grabbed out of the original mybash-setup-script. exit 1 ;; esac diff --git a/src/commands/applications-setup/neovim-setup.sh b/src/commands/applications-setup/neovim-setup.sh index ef909f440..b1bfaa6bb 100755 --- a/src/commands/applications-setup/neovim-setup.sh +++ b/src/commands/applications-setup/neovim-setup.sh @@ -10,7 +10,7 @@ cloneNeovim() { } setupNeovim() { - echo "Setting up Neovim if not already installed" + echo "Install Neovim if not already installed" case "$PACKAGER" in pacman) $ESCALATION_TOOL "$PACKAGER" -S --needed --noconfirm neovim ripgrep fzf python-virtualenv luarocks go shellcheck @@ -25,7 +25,7 @@ setupNeovim() { $ESCALATION_TOOL "$PACKAGER" install -y neovim ripgrep fzf python3-virtualenv luarocks golang ShellCheck ;; *) - printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}" + printf "%b\n" "${RED}Unsupported package manager: $PACKAGER${RC}" # The packages above were grabbed out of the original nvim-setup-script. exit 1 ;; esac