1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-01-10 20:43:11 +01:00

Merge branch 'ohmyzsh:master' into master

This commit is contained in:
Himprakash Deka
2022-06-03 20:49:46 +05:30
committed by GitHub

View File

@@ -65,7 +65,7 @@ function is_update_available() {
local remote_head
remote_head=$(
if (( ${+commands[curl]} )); then
curl -m 2 -fsSL -H 'Accept: application/vnd.github.v3.sha' $api_url 2>/dev/null
curl --conect-timeout 2 -fsSL -H 'Accept: application/vnd.github.v3.sha' $api_url 2>/dev/null
elif (( ${+commands[wget]} )); then
wget -T 2 -O- --header='Accept: application/vnd.github.v3.sha' $api_url 2>/dev/null
elif (( ${+commands[fetch]} )); then