summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-04-10 23:07:41 -0400
committerB. Stack <bgstack15@gmail.com>2022-04-10 23:07:41 -0400
commit9b7584e590805321f07e4af143510155dbcb7e80 (patch)
tree891fa0b547458846d1c9b83fddda25c479caa2e9
parentadd ublock like LW says it has (diff)
downloadlibrewolf-debian-9b7584e590805321f07e4af143510155dbcb7e80.tar.gz
librewolf-debian-9b7584e590805321f07e4af143510155dbcb7e80.tar.bz2
librewolf-debian-9b7584e590805321f07e4af143510155dbcb7e80.zip
add jq dep
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index 0275fd7..86d6ec2 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -17,7 +17,7 @@
# Improve:
# Make this idempotent. Right now it is very much not.
# Dependencies:
-# wget, git, tar, awk, sed
+# wget, git, tar, awk, sed, jq
# Aborts the script upon any failure
set -e;
@@ -47,8 +47,7 @@ work_dir=${CI_PROJECT_DIR}/prepared/
#####################################
# Download initial components
-
-test -z "${SKIP_APT}" && apt update && apt install -y git curl wget xz-utils python3-pip
+test -z "${SKIP_APT}" && apt update && apt install -y git curl wget xz-utils python3-pip jq
# Download upstream distro assets, which includes
# 1. orig tarball, which in Debian is not always the pristine contents from upstream source
bgstack15