Skip to content

Commit 46c34c8

Browse files
Fix minor casing
1 parent de58fe0 commit 46c34c8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# =============================================================================
1010

1111
TOOL_NAME="Luca"
12+
BIN_NAME="luca"
1213
INSTALL_DIR="/usr/local/bin"
1314
TOOL_FOLDER=".luca"
1415
VERSION_FILE="${PWD}/.luca-version"
@@ -97,7 +98,7 @@ fi
9798
# VERSION CHECK - SKIP IF ALREADY UP TO DATE
9899
# =============================================================================
99100

100-
EXECUTABLE_FILE="$INSTALL_DIR/$TOOL_NAME"
101+
EXECUTABLE_FILE="$INSTALL_DIR/$BIN_NAME"
101102

102103
# Check if Luca is already installed and up-to-date
103104
if [ -f "$EXECUTABLE_FILE" ]; then
@@ -283,5 +284,5 @@ case "$SHELL" in
283284
esac
284285

285286
echo " 1. Restart your terminal or run: source $SHELL_PROFILE"
286-
echo " 2. Run: $TOOL_NAME --help"
287+
echo " 2. Run: $BIN_NAME --help"
287288
echo ""

0 commit comments

Comments
 (0)