From 9ca3a327e1903c9a28603b6852c8a676cef07abe Mon Sep 17 00:00:00 2001 From: Syed Daanish Date: Wed, 28 Jan 2026 22:28:40 +0000 Subject: [PATCH] Update installer.sh --- installer.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer.sh b/installer.sh index 0109bd1..2db89af 100644 --- a/installer.sh +++ b/installer.sh @@ -56,15 +56,15 @@ echo "Installing Crib (Ruby $RUBY_VERSION)" echo "Install locally ~/.local/bin or globally /usr/bin? [l/g]" read -r choice case "$choice" in -l | L) +(l | L) INSTALL_DIR="$HOME/.local/bin" SUDO="" ;; -g | G) +(g | G) INSTALL_DIR="/usr/bin" SUDO="sudo" ;; -*) +(*) echo "Invalid choice" exit 1 ;;