summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-03-11 10:50:58 -0500
committerB Stack <bgstack15@gmail.com>2021-03-11 10:50:58 -0500
commitf64b8d7135aa28c25970319017ba3c908d5eb9b0 (patch)
tree523788d330f8cb09c3b7d2636487eab002bd09c8
parentattempt to handle choosable distro (diff)
downloadlibrewolf-debian-ubuntu2004.tar.gz
librewolf-debian-ubuntu2004.tar.bz2
librewolf-debian-ubuntu2004.zip
handle pre-configured DISTROubuntu2004
-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 56f3b46..318af35 100644
--- a/scripts/prep-librewolf-dpkg.conf
+++ b/scripts/prep-librewolf-dpkg.conf
@@ -2,7 +2,7 @@
# Configure these settings before running that script.
# Available options for DISTRO: ubuntu debian
-DISTRO=ubuntu
+DISTRO=${DISTRO:-'debian'}
# current version of Firefox package in target distro
distro_firefox_version=${distro_firefox_version:-'86.0+build3-0ubuntu0.20.04.1'}
# current version of Firefox, as defined by name of the orig tarball.
bgstack15