forked from LBRYCommunity/lbry-sdk
f3a71245e8
Somehow these files got lost in a rebase. I'm sort of at a loss for how, but well, adding them back in.
15 lines
454 B
Bash
Executable file
15 lines
454 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Configure the library for a non-production release
|
|
#
|
|
|
|
set -euo pipefail
|
|
set -o xtrace
|
|
|
|
|
|
# changes here also need to be added to build.ps1 for windows
|
|
python packaging/append_sha_to_version.py lbrynet/__init__.py ${TRAVIS_COMMIT}
|
|
|
|
wget https://s3.amazonaws.com/lbry-ui/development/dist.zip -O dist.zip
|
|
unzip -oq dist.zip -d lbrynet/resources/ui
|
|
wget https://s3.amazonaws.com/lbry-ui/development/data.json -O lbrynet/resources/ui/data.json
|