fix: Wrong whispermoney script path
This commit is contained in:
parent
3ab920ee60
commit
2607861fce
|
|
@ -17,7 +17,6 @@ REPO_DIR="whisper-money"
|
||||||
check_and_setup_repo() {
|
check_and_setup_repo() {
|
||||||
# Check if we're already in the whisper-money git 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
|
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
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
@ -83,6 +82,11 @@ check_and_setup_repo() {
|
||||||
chmod +x public/setup.sh
|
chmod +x public/setup.sh
|
||||||
fi
|
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 -e "${GREEN}✓ Ready to continue with installation${NC}"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue