aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-01-10 11:53:09 -0500
committerB Stack <bgstack15@gmail.com>2021-01-10 11:53:09 -0500
commit9b1a0c82355c56777d2fc79d49f836093ce29889 (patch)
tree004d3093b8f3961deb0c5d47f48d10b681cf30a1
parentupdate prep-librewolf-dpkg for 84.0-3 (diff)
downloadlibrewolf-linux-9b1a0c82355c56777d2fc79d49f836093ce29889.tar.gz
librewolf-linux-9b1a0c82355c56777d2fc79d49f836093ce29889.tar.bz2
librewolf-linux-9b1a0c82355c56777d2fc79d49f836093ce29889.zip
update prep-librewolf-dpkg for 84.0.2
-rw-r--r--prep-librewolf-dpkg.conf4
-rwxr-xr-xprep-librewolf-dpkg.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/prep-librewolf-dpkg.conf b/prep-librewolf-dpkg.conf
index ac5c93e..a607c75 100644
--- a/prep-librewolf-dpkg.conf
+++ b/prep-librewolf-dpkg.conf
@@ -1,8 +1,8 @@
# Config file for prep-librewolf-dpkg.sh
# Configure these settings before running that script.
-debian_firefox_version=84.0-3 # current version of Firefox package in Debian sid
-firefox_version=84.0 # current version of Firefox
+debian_firefox_version=84.0.2-1 # current version of Firefox package in Debian sid
+firefox_version=84.0.2 # current version of Firefox
librewolf_common_url=https://gitlab.com/librewolf-community/browser/common.git
librewolf_settings_url=https://gitlab.com/librewolf-community/settings.git
diff --git a/prep-librewolf-dpkg.sh b/prep-librewolf-dpkg.sh
index 3130c66..584c67e 100755
--- a/prep-librewolf-dpkg.sh
+++ b/prep-librewolf-dpkg.sh
@@ -32,7 +32,7 @@ test ! -r "${librewolf_dpkg_conf}" && { echo "Unable to load config file, which
# 1. orig tarball, which in Debian is not always the pristine contents from upstream source
# 2. debian/ directory which defines how to build a package for Debian
# 3. Debian source package control file
-cd "${work_dir}"
+mkdir -p "${work_dir}" ; cd "${work_dir}"
test -z "${SKIP_DOWNLOAD}" && {
wget --content-disposition http://deb.debian.org/debian/pool/main/f/firefox/firefox_"${firefox_version}".orig.tar.xz # -O librewolf_"${firefox_version}".orig.tar.xz
wget --content-disposition http://deb.debian.org/debian/pool/main/f/firefox/firefox_"${debian_firefox_version}".debian.tar.xz # -O librewolf_"${debian_firefox_version}".debian.tar.xz
bgstack15