summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--scripts/prep-librewolf-dpkg.conf4
2 files changed, 5 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index a01ee28..86d5a28 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,4 @@
.*.swp
+[0-9]*/
+git/
+prepared/
diff --git a/scripts/prep-librewolf-dpkg.conf b/scripts/prep-librewolf-dpkg.conf
index ad9949c..50d3a37 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:-'88.0-1'}
+distro_firefox_version=${distro_firefox_version:-'88.0.1-1'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${firefox_version:-'88.0'}
+firefox_version=${firefox_version:-'88.0.1'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
bgstack15