0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

guix: Add curl to required tool list

This commit is contained in:
Hennadii Stepanov 2021-03-01 09:53:01 +02:00
parent e52ce9f2b3
commit 97f10621f4
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -9,7 +9,7 @@ set -e -o pipefail
################
# Check 1: Make sure that we can invoke required tools
################
for cmd in git make guix cat mkdir; do
for cmd in git make guix cat mkdir curl; do
if ! command -v "$cmd" > /dev/null 2>&1; then
echo "ERR: This script requires that '$cmd' is installed and available in your \$PATH"
exit 1