From 93ada2b56568474050557b827d5715a4295802db Mon Sep 17 00:00:00 2001 From: Dhruv Mistry <68422844+dhruvmistry2000@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:38:41 +0530 Subject: [PATCH] Numlock edit --- setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.sh b/setup.sh index b58de74..8a6b962 100755 --- a/setup.sh +++ b/setup.sh @@ -297,16 +297,16 @@ fi NUMLOCK_SCRIPT="$GITPATH/numlock.sh" if [ -f "$COMPILE_SCRIPT" ]; then chmod +x "$NUMLOCK_SCRIPT" - echo "${YELLOW}Running compile.sh...${RC}" + echo "${YELLOW}Running numlock.sh...${RC}" "$COMPILE_SCRIPT" if [ $? -eq 0 ]; then - echo "${GREEN}compile.sh executed successfully${RC}" + echo "${GREEN}numlock.sh executed successfully${RC}" else - echo "${RED}compile.sh execution failed${RC}" + echo "${RED}numlock.sh execution failed${RC}" exit 1 fi else - echo "${RED}compile.sh not found at $NUMLOCK_SCRIPT${RC}" + echo "${RED}numlock.sh not found at $NUMLOCK_SCRIPT${RC}" exit 1 fi