From 4bfb2f6881aca263d1aafba269eb24e6b688f131 Mon Sep 17 00:00:00 2001 From: Alex Epstein Date: Tue, 1 Aug 2017 00:16:13 -0400 Subject: [PATCH] Does not work with cloudup --- cloudup/cloudup | 3 --- 1 file changed, 3 deletions(-) diff --git a/cloudup/cloudup b/cloudup/cloudup index 34f32b2..d55077d 100755 --- a/cloudup/cloudup +++ b/cloudup/cloudup @@ -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 }