From 7cf7f1ab4ba03805b912b56eea141c51d3fbc05e Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Wed, 28 Dec 2022 03:23:10 +0000 Subject: [PATCH] Cirrus: Fix missing "dig" dependency on Debian --- .cirrus.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 0a3b7f8..3eac681 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -192,7 +192,8 @@ task: populate_script: mkdir -p /tmp/bitcoind install_script: - apt-get update - - apt-get install -y dnssec-trigger + # bind9-dnsutils contains dig + - apt-get install -y dnssec-trigger bind9-dnsutils # Namecoin Core - BITCOIND_URL=$(curl https://www.namecoin.org/download/ | grep x86_64-linux-gnu.tar.gz | grep -v 0.13.99 | grep --only-matching https://.*.tar.gz) - BITCOIND_FILENAME=$(echo $BITCOIND_URL | grep -E --only-matching 'namecoin-nc.*.tar.gz')