mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-27 03:14:56 +01:00
Fix rand-quote failure when site is unreachable
This plugin was designed so that if there is any failure, it will simply call itself recursively. Which means that if you were working offline, if `quote` was called in your `.zshrc`, you would be unable to open a new terminal session. I fixed this by allowing the plugin to output nothing if a quote could not be fetched.
This commit is contained in:
parent
f6c15e927a
commit
0fca8ab438
1 changed files with 2 additions and 2 deletions
|
|
@ -18,8 +18,8 @@ if [[ -x `which curl` ]]; then
|
|||
W=$(echo "$Q" | sed -e 's/.*\/quotes\///g' -e 's/<.*//g' -e 's/.*">//g')
|
||||
if [ "$W" -a "$TXT" ]; then
|
||||
echo "${WHO_COLOR}${W}${COLON_COLOR}: ${TEXT_COLOR}“${TXT}”${END_COLOR}"
|
||||
else
|
||||
quote
|
||||
# else
|
||||
# quote
|
||||
fi
|
||||
}
|
||||
#quote
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue