Does not work with cloudup

This commit is contained in:
Alex Epstein 2017-08-01 00:16:13 -04:00
parent 9d66388cd2
commit 4bfb2f6881
1 changed files with 0 additions and 3 deletions

View File

@ -17,8 +17,6 @@ getConfiguredClient()
configuredClient="curl"
elif command -v wget &>/dev/null; then
configuredClient="wget"
elif command -v http &>/dev/null; then
configuredClient="httpie"
elif command -v fetch &>/dev/null; then
configuredClient="fetch"
else
@ -33,7 +31,6 @@ httpGet()
case "$configuredClient" in
curl) curl -A curl -s "$@" ;;
wget) wget -qO- "$@" ;;
httpie) http -b GET "$@" ;;
fetch) fetch -o "..." ;;
esac
}