mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 22:30:07 +00:00
Merge branch 'ohmyzsh:master' into master
This commit is contained in:
commit
99261f7ae8
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ function is_update_available() {
|
||||||
local remote_head
|
local remote_head
|
||||||
remote_head=$(
|
remote_head=$(
|
||||||
if (( ${+commands[curl]} )); then
|
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
|
elif (( ${+commands[wget]} )); then
|
||||||
wget -T 2 -O- --header='Accept: application/vnd.github.v3.sha' $api_url 2>/dev/null
|
wget -T 2 -O- --header='Accept: application/vnd.github.v3.sha' $api_url 2>/dev/null
|
||||||
elif (( ${+commands[fetch]} )); then
|
elif (( ${+commands[fetch]} )); then
|
||||||
|
|
Loading…
Reference in a new issue