From 2607861fce105106e187b85aed57ff82cd7a1c50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vi=CC=81ctor=20Falco=CC=81n?= Date: Fri, 16 Jan 2026 18:48:44 +0100 Subject: [PATCH] fix: Wrong whispermoney script path --- public/setup.sh | 6 +++++- wispermoney => whispermoney | 0 2 files changed, 5 insertions(+), 1 deletion(-) rename wispermoney => whispermoney (100%) diff --git a/public/setup.sh b/public/setup.sh index ff06a498..2ac10541 100755 --- a/public/setup.sh +++ b/public/setup.sh @@ -17,7 +17,6 @@ REPO_DIR="whisper-money" check_and_setup_repo() { # Check if we're already in the whisper-money git repo if [ -d ".git" ] && git remote get-url origin 2>/dev/null | grep -q "whisper-money"; then - echo -e "${GREEN}✓ Already in Whisper Money repository${NC}" return 0 fi @@ -83,6 +82,11 @@ check_and_setup_repo() { chmod +x public/setup.sh fi + # Make sure the script is executable + if [ -f "whispermoney" ]; then + chmod +x whispermoney + fi + echo -e "${GREEN}✓ Ready to continue with installation${NC}" echo "" diff --git a/wispermoney b/whispermoney similarity index 100% rename from wispermoney rename to whispermoney