summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/build-librewolf-dpkg.sh1
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/scripts/build-librewolf-dpkg.sh b/scripts/build-librewolf-dpkg.sh
index ca25ebc..13eb27d 100644
--- a/scripts/build-librewolf-dpkg.sh
+++ b/scripts/build-librewolf-dpkg.sh
@@ -46,6 +46,7 @@ fonts-freefont-ttf \
fonts-dejima-mincho \
git \
wget \
+xz-utils \
curl
curl https://sh.rustup.rs -o rustup.sh
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index 1129868..7bc4ad8 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -40,7 +40,7 @@ work_dir=${CI_PROJECT_DIR}/prepared/
#####################################
# Download initial components
-apt update && apt install -y git curl wget
+apt update && apt install -y git curl wget xz-utils
# Download upstream Debian assets, which includes
# 1. orig tarball, which in Debian is not always the pristine contents from upstream source
bgstack15