From a96e9383aae1b353640ef6e18a9a737f003d7f9b Mon Sep 17 00:00:00 2001 From: aeneasr <3372410+aeneasr@users.noreply.github.com> Date: Mon, 30 Dec 2024 17:22:56 +0100 Subject: [PATCH] fix: use https instead of ssh --- scripts/sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sync.sh b/scripts/sync.sh index 1aa7d1a..0d89067 100755 --- a/scripts/sync.sh +++ b/scripts/sync.sh @@ -195,7 +195,7 @@ function clone { header "CLONING" local -r repo_id=$1 local -r repo_path=$2 - git clone --depth 1 "git@github.com:$repo_id.git" "$repo_path" + git clone --depth 1 "https://github.com/$repo_id.git" "$repo_path" } # commits the changes in the current directory to the local Git client