Skip to content

Commit

Permalink
fix(updater): change remote using deprecated git: protocol (ohmyzsh…
Browse files Browse the repository at this point in the history
  • Loading branch information
thinszx authored Mar 17, 2022
1 parent 0f2715b commit 4a988c4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ git remote -v | while read remote url extra; do
git@github.com:robbyrussell/oh-my-zsh(|.git))
git remote set-url "$remote" "git@github.com:ohmyzsh/ohmyzsh.git"
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
done

Expand Down

0 comments on commit 4a988c4

Please sign in to comment.