Unverified Commit 4a988c46 authored by thinszx's avatar thinszx Committed by GitHub

fix(updater): change remote using deprecated `git:` protocol (#10779)

parent 0f2715bb
...@@ -164,6 +164,10 @@ git remote -v | while read remote url extra; do ...@@ -164,6 +164,10 @@ git remote -v | while read remote url extra; do
git@github.com:robbyrussell/oh-my-zsh(|.git)) git@github.com:robbyrussell/oh-my-zsh(|.git))
git remote set-url "$remote" "git@github.com:ohmyzsh/ohmyzsh.git" git remote set-url "$remote" "git@github.com:ohmyzsh/ohmyzsh.git"
break ;; break ;;
# Update out-of-date "unauthenticated git protocol on port 9418" to https
git://github.com/robbyrussell/oh-my-zsh(|.git))
git remote set-url "$remote" "https://github.com/ohmyzsh/ohmyzsh.git"
break ;;
esac esac
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment