Skip to content

Commit 0d06d73

Browse files
authored
Fix install script URLs and commands
1 parent 1a911f8 commit 0d06d73

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ install_python() {
147147
macos)
148148
if ! command -v brew &> /dev/null; then
149149
log_info "Installing Homebrew..."
150-
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install. sh)"
150+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
151151
fi
152152
brew install python3
153153
;;
@@ -210,7 +210,7 @@ clone_repository() {
210210
git pull origin main || git pull origin master
211211
else
212212
cd "$INSTALL_DIR"
213-
git clone --depth 1 "$REPO_URL. git"
213+
git clone --depth 1 "$REPO_URL.git"
214214
fi
215215

216216
log_success "SpyHunt downloaded successfully"
@@ -354,7 +354,7 @@ show_help() {
354354
echo " --help Show this help message"
355355
echo ""
356356
echo "Examples:"
357-
echo " curl -sSL https://raw.githubusercontent.com/Pymmdrza/SpyHunt/main/install. sh | bash"
357+
echo " curl -sSL https://raw.githubusercontent.com/Pymmdrza/SpyHunt/main/install.sh | bash"
358358
echo " ./install.sh --pip"
359359
echo " ./install.sh --venv"
360360
echo ""

0 commit comments

Comments
 (0)