From 584bcc60339437526110a80b07fdb1540d61ebf1 Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Sun, 14 Sep 2025 14:18:53 +0200 Subject: [PATCH] Fix typo not important but... --- install.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index e81398d..cf91fd7 100644 --- a/install.sh +++ b/install.sh @@ -4,8 +4,6 @@ # Can be launched with the following command: # sh <(curl -sSL https://raw.githubusercontent.com/Katenary/katenary/master/install.sh) -set -e - # Detect the OS and architecture OS=$(uname) ARCH=$(uname -m) @@ -21,10 +19,10 @@ done # - $HOME/.local/bin # - $HOME/.bin # - $HOME/bin -COMON_INSTALL_PATHS="$HOME/.local/bin $HOME/.bin $HOME/bin" +COMMON_INSTALL_PATHS="$HOME/.local/bin $HOME/.bin $HOME/bin" INSTALL_PATH="" -for p in $COMON_INSTALL_PATHS; do +for p in $COMMON_INSTALL_PATHS; do if [ -d $p ]; then INSTALL_PATH=$p break