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