diff options
author | B. Stack <bgstack15@gmail.com> | 2022-04-13 08:24:24 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-04-13 08:24:24 -0400 |
commit | d51a0ff7b3e297d25443ff54a6fb2f2a85e423c7 (patch) | |
tree | 0530a92c1bb3652306f66e8e1493995e020591ce /scripts/prep-librewolf-dpkg.sh | |
parent | add jq dep (diff) | |
download | librewolf-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-x | scripts/prep-librewolf-dpkg.sh | 2 |
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 |