From 366e17feae1cc3b489b6e374790e8767c37948ae Mon Sep 17 00:00:00 2001 From: Jonas Kruckenberg Date: Thu, 15 Dec 2022 11:37:10 +0100 Subject: [PATCH] Update sync-to-mirrors.sh --- .github/sync-to-mirrors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/sync-to-mirrors.sh b/.github/sync-to-mirrors.sh index db2794f8..757e1d10 100755 --- a/.github/sync-to-mirrors.sh +++ b/.github/sync-to-mirrors.sh @@ -67,7 +67,7 @@ while read -r PLUGIN_NAME; do # Initialize the directory as a git repo, and set the remote git init -b "$BRANCH" . - git remote add origin "git@github.com:tauri-apps/tauri-plugin-${PLUGIN_NAME}.git" + git remote add origin "https://github.com/tauri-apps/tauri-plugin-${PLUGIN_NAME}" if [[ -n "$API_TOKEN_GITHUB" ]]; then git config --local http.https://github.com/.extraheader "AUTHORIZATION: basic $(printf "x-access-token:%s" "$API_TOKEN_GITHUB" | base64)" fi