You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
309 B
11 lines
309 B
#!/bin/bash
|
|
|
|
CONTRIB="$(dirname "$0")"
|
|
test -n "$CONTRIB" -a -d "$CONTRIB" || exit
|
|
|
|
rm "$CONTRIB"/../packages/ -r
|
|
|
|
#Install pure python modules in electrum directory
|
|
python3 -m pip install --no-dependencies --no-binary :all: \
|
|
-r "$CONTRIB"/deterministic-build/requirements.txt -t "$CONTRIB"/../packages
|
|
|
|
|