Skip to content

Commit 1843955

Browse files
committed
Moved to https calls
1 parent f74a596 commit 1843955

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

hacker.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,12 +280,12 @@ check_game_directory() {
280280
# Clone hackercore-core into game/objects if it doesn't exist
281281
if [[ ! -d "game/objects" ]]; then
282282
print_warning "game/objects/ directory not found, cloning repository..."
283-
if git clone git@github.com:biscuitWizard/moor-hackercore-core.git game/objects; then
283+
if git clone https://github.com/biscuitWizard/moor-hackercore-core.git game/objects; then
284284
print_success "Successfully cloned game repository to game/objects/ directory!"
285285
else
286286
print_error "Failed to clone game repository!"
287-
print_info "Please check your SSH key setup and network connection."
288-
print_info "Make sure you have access to git@github.com:biscuitWizard/moor-hackercore-core.git"
287+
print_info "Please check your network connection."
288+
print_info "Make sure you have access to https://github.com/biscuitWizard/moor-hackercore-core.git"
289289
exit 1
290290
fi
291291
else

0 commit comments

Comments
 (0)