summarylogtreecommitdiffstats
path: root/use_wget.patch
diff options
context:
space:
mode:
authorthaliarchos2021-01-13 09:28:34 -0500
committerthaliarchos2021-01-13 09:28:34 -0500
commit3d2c8449ebaa91fea0a62fd4c4c8243953eb5f4f (patch)
treed18f9a0c106adc0650c605823d426a99d9eeb259 /use_wget.patch
parent3a05a0e77d528f92e6473e394bf6b92a785cd392 (diff)
downloadaur-3d2c8449ebaa91fea0a62fd4c4c8243953eb5f4f.tar.gz
Update: Removed use_wget.patch
Already accepted in upstream
Diffstat (limited to 'use_wget.patch')
-rw-r--r--use_wget.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/use_wget.patch b/use_wget.patch
deleted file mode 100644
index d186f7c9e04f..000000000000
--- a/use_wget.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/bookmenu b/bookmenu
-old mode 100644
-new mode 100755
-index 16d81eb..11631ae
---- a/bookmenu
-+++ b/bookmenu
-@@ -16,7 +16,7 @@ TEXT="/tmp/bookmenu_text"
-
- command -v chafa >/dev/null || { echo "missing \"chafa\" dependency"; exit 1; }
-
--get_index() { curl -s "${URL1}/${QUERY}/?extension=$FORMAT" > $INDEX; }
-+get_index() { wget -O - -q "${URL1}/${QUERY}/?extension=$FORMAT" > $INDEX; }
- get_list() { grep "data-src" $INDEX | cut -d'"' -f8 | sed '/^\//d' > $LIST; max=$(wc -l $LIST | cut -d' ' -f1); }
- get_title() { grep "text-decoration" $INDEX | cut -d'>' -f2 | tail -n +3 | sed -e "s/...$//" > $TITLE; }
- get_info() { grep 'MB\|KB' $INDEX | cut -d">" -f2 | cut -d"<" -f1 > $INFO; }