diff options
| author | Patrick Lodder <[email protected]> | 2020-07-22 12:31:13 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2020-07-22 13:46:43 +0200 |
| commit | cb49441a25fd5db6dc177622ebf5b0242348ab20 (patch) | |
| tree | ec447144be34565b266c2a494777f4d32aa836ce /qa | |
| parent | dogecoin-tx: fix tests (diff) | |
| download | discoin-cb49441a25fd5db6dc177622ebf5b0242348ab20.tar.xz discoin-cb49441a25fd5db6dc177622ebf5b0242348ab20.zip | |
Fix ltc_scrypt dependency for RPC tests
- travis: RUN_TESTS requires python3-dev. This enables us to
compile the ltc_scrypt library under python3
- pull tester deps: use curl instead of wget to reduce dependencies
as everything else uses curl
Diffstat (limited to 'qa')
| -rwxr-xr-x | qa/pull-tester/install-deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/pull-tester/install-deps.sh b/qa/pull-tester/install-deps.sh index e54bfe1cd..2144b5fbc 100755 --- a/qa/pull-tester/install-deps.sh +++ b/qa/pull-tester/install-deps.sh @@ -2,7 +2,7 @@ # installs test dependencies -wget https://github.com/langerhans/ltc-scrypt/archive/master.tar.gz +curl -L https://github.com/langerhans/ltc-scrypt/archive/master.tar.gz --output master.tar.gz echo "ade3cdf498927990b6d153d74f0da104114e838584be5a81bef8972accd03341 master.tar.gz" | sha256sum -c tar zxf master.tar.gz pushd ltc-scrypt-master |