summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-10-11 10:25:56 -0400
committerB. Stack <bgstack15@gmail.com>2021-10-11 10:25:56 -0400
commitaccbef44cb572a013f24effbda1038a6ac54024e (patch)
tree9464deeb2c7ee27bf5c858ad34525dbea1056989
parentfix mozconfig for 92.0 (diff)
downloadlibrewolf-debian-accbef44cb572a013f24effbda1038a6ac54024e.tar.gz
librewolf-debian-accbef44cb572a013f24effbda1038a6ac54024e.tar.bz2
librewolf-debian-accbef44cb572a013f24effbda1038a6ac54024e.zip
bump to 93.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 eedae65..bffe061 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:-'92.0-1'}
+distro_firefox_version=${distro_firefox_version:-'93.0-1'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${firefox_version:-'92.0'}
+firefox_version=${firefox_version:-'93.0'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
bgstack15