summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-09-30 08:35:27 -0400
committerB. Stack <bgstack15@gmail.com>2021-09-30 08:35:27 -0400
commit2340a4b10cef4bce14b6caf0a1f57ee6046fa423 (patch)
tree212f78a504e5cedf6e7cf9ef0fd766e094fefe0d
parentfirst attempt (diff)
downloadlibrewolf-debian-2340a4b10cef4bce14b6caf0a1f57ee6046fa423.tar.gz
librewolf-debian-2340a4b10cef4bce14b6caf0a1f57ee6046fa423.tar.bz2
librewolf-debian-2340a4b10cef4bce14b6caf0a1f57ee6046fa423.zip
update to 92.0
-rw-r--r--scripts/prep-librewolf-dpkg.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/prep-librewolf-dpkg.conf b/scripts/prep-librewolf-dpkg.conf
index de9b018..eedae65 100644
--- a/scripts/prep-librewolf-dpkg.conf
+++ b/scripts/prep-librewolf-dpkg.conf
@@ -4,9 +4,9 @@
# Available options for DISTRO: ubuntu debian
DISTRO=${DISTRO:-'debian'}
# current version of Firefox package in target distro
-distro_firefox_version=${distro_firefox_version:-'91.0.1-1'}
+distro_firefox_version=${distro_firefox_version:-'92.0-1'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${firefox_version:-'91.0.1'}
+firefox_version=${firefox_version:-'92.0'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
bgstack15