summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2021-03-25 19:22:26 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2021-03-25 19:22:26 +0100
commitc3fa386084bcfc4f4e0ed55e72e0eeb3844eff29 (patch)
treedd9af79479cebe55dab1c7cc9fce60e939af1c6a
parentprepare v87.0-1 (diff)
downloadlibrewolf-debian-c3fa386084bcfc4f4e0ed55e72e0eeb3844eff29.tar.gz
librewolf-debian-c3fa386084bcfc4f4e0ed55e72e0eeb3844eff29.tar.bz2
librewolf-debian-c3fa386084bcfc4f4e0ed55e72e0eeb3844eff29.zip
fix wrongly named inherited variable
-rw-r--r--scripts/prep-librewolf-dpkg.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/prep-librewolf-dpkg.conf b/scripts/prep-librewolf-dpkg.conf
index 36d8cc2..780e510 100644
--- a/scripts/prep-librewolf-dpkg.conf
+++ b/scripts/prep-librewolf-dpkg.conf
@@ -6,7 +6,7 @@ DISTRO=${DISTRO:-'debian'}
# current version of Firefox package in target distro
distro_firefox_version=${distro_firefox_version:-'87.0+build3-0ubuntu0.20.04.2'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${pkgver:-'86.0+build3'}
+firefox_version=${firefox_version:-'86.0+build3'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
bgstack15