diff options
| author | MarcoFalke <[email protected]> | 2019-05-28 14:32:05 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-05-28 14:32:07 -0400 |
| commit | e78c33131b0025bbce725a3c027e7d19f8f6e947 (patch) | |
| tree | 10cb19bb797709b6b5029d96221da919730e8698 | |
| parent | Merge #16095: Catch by reference not value in wallettool (diff) | |
| parent | contrib: add curl as a required program in gitian-build.py (diff) | |
| download | discoin-e78c33131b0025bbce725a3c027e7d19f8f6e947.tar.xz discoin-e78c33131b0025bbce725a3c027e7d19f8f6e947.zip | |
Merge #16114: contrib: add curl as a required program in gitian-build.py
97dce72261 contrib: add curl as a required program in gitian-build.py (fanquake)
Pull request description:
Fixes: #16109
Adds `curl` to the list of base programs required by the `gitian-build.py` script.
ACKs for commit 97dce7:
hebasto:
tACK 97dce7226194d5d8a06787afef7df08cebb66bd6 on Debian Buster RC1.
Tree-SHA512: 68847a527aa6b5d883bffd6a6fe6bbbe4b96ceddb30f55ed5ffbfa690a10c2e9c1bc7ba4520319531ab3baa7a7f64c3c8ce89a791f7c746abe73a84c2942b94d
| -rwxr-xr-x | contrib/gitian-build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gitian-build.py b/contrib/gitian-build.py index 5cee59a9b..570d4906c 100755 --- a/contrib/gitian-build.py +++ b/contrib/gitian-build.py @@ -7,7 +7,7 @@ import sys def setup(): global args, workdir - programs = ['ruby', 'git', 'make', 'wget'] + programs = ['ruby', 'git', 'make', 'wget', 'curl'] if args.kvm: programs += ['apt-cacher-ng', 'python-vm-builder', 'qemu-kvm', 'qemu-utils'] elif args.docker and not os.path.isfile('/lib/systemd/system/docker.service'): |