summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-04-13 08:24:24 -0400
committerB. Stack <bgstack15@gmail.com>2022-04-13 08:24:24 -0400
commitd51a0ff7b3e297d25443ff54a6fb2f2a85e423c7 (patch)
tree0530a92c1bb3652306f66e8e1493995e020591ce /scripts/prep-librewolf-dpkg.sh
parentadd jq dep (diff)
downloadlibrewolf-debian-d51a0ff7b3e297d25443ff54a6fb2f2a85e423c7.tar.gz
librewolf-debian-d51a0ff7b3e297d25443ff54a6fb2f2a85e423c7.tar.bz2
librewolf-debian-d51a0ff7b3e297d25443ff54a6fb2f2a85e423c7.zip
download ubo correctly
Diffstat (limited to 'scripts/prep-librewolf-dpkg.sh')
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index 86d6ec2..554d9c2 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -443,7 +443,7 @@ sed -i -r "${debian_dir}"/rules \
# Fetch latest uBlock Origin webextensions
latest_ubo_url="$( curl --silent https://api.github.com/repos/gorhill/uBlock/releases/latest | jq '.assets[].browser_download_url | match(".*firefox.*xpi").string' | tr -d '"' )"
-curl --silent --output "${debian_dir}/uBlock0@raymondhill.net.xpi" "${latest_ubo_url}"
+curl --silent --location --output "${debian_dir}/uBlock0@raymondhill.net.xpi" "${latest_ubo_url}"
if test "${DISTRO}" = "debian" ; then
bgstack15