modified: tools/check_for_upgrade.sh

modified:   tools/install.sh
	modified:   tools/upgrade.sh
This commit is contained in:
seocringe 2024-02-24 23:11:24 +02:00
commit 2710b2518e
3 changed files with 6 additions and 301 deletions

View file

@ -186,13 +186,13 @@ git remote -v | while read remote url extra; do
case "$url" in
git://github.com/robbyrussell/oh-my-zsh(|.git))
# Update out-of-date "unauthenticated git protocol on port 9418" to https
git remote set-url "$remote" "https://github.com/ohmyzsh/ohmyzsh.git" ;;
git remote set-url "$remote" "https://github.com/seocringe/ohmyzsh.git" ;;
https://github.com/robbyrussell/oh-my-zsh(|.git))
git remote set-url "$remote" "https://github.com/ohmyzsh/ohmyzsh.git" ;;
git remote set-url "$remote" "https://github.com/seocringe/ohmyzsh.git" ;;
git@github.com:robbyrussell/oh-my-zsh(|.git))
git remote set-url "$remote" "git@github.com:ohmyzsh/ohmyzsh.git" ;;
https://github.com/ohmyzsh/ohmyzsh(|.git)) ;;
git@github.com:ohmyzsh/ohmyzsh(|.git)) ;;
git remote set-url "$remote" "git@github.com:seocringe/ohmyzsh.git" ;;
https://github.com/seocringe/ohmyzsh(|.git)) ;;
git@github.com:seocringe/ohmyzsh(|.git)) ;;
*) continue ;;
esac