need to not be in build dir
This commit is contained in:
parent
138e9c1486
commit
f5dc213e53
1 changed files with 2 additions and 4 deletions
|
@ -12,6 +12,8 @@ rm -rf build dist LBRY.app
|
||||||
echo "Updating lbrynet"
|
echo "Updating lbrynet"
|
||||||
if [ -z ${TRAVIS_BUILD_DIR+x} ]; then
|
if [ -z ${TRAVIS_BUILD_DIR+x} ]; then
|
||||||
# building locally
|
# building locally
|
||||||
|
mkdir -p $tmp
|
||||||
|
cd $tmp
|
||||||
git clone --depth 1 http://github.com/lbryio/lbry.git
|
git clone --depth 1 http://github.com/lbryio/lbry.git
|
||||||
cd lbry
|
cd lbry
|
||||||
LBRY="${tmp}/lbry"
|
LBRY="${tmp}/lbry"
|
||||||
|
@ -43,7 +45,6 @@ else
|
||||||
pip install $MODULES
|
pip install $MODULES
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
pip install dmgbuild
|
pip install dmgbuild
|
||||||
pip show dmgbuild
|
pip show dmgbuild
|
||||||
|
|
||||||
|
@ -55,9 +56,6 @@ pip install jsonrpc certifi
|
||||||
# the default py2app (v0.9) has a bug that is fixed in the head of /metachris/py2app
|
# the default py2app (v0.9) has a bug that is fixed in the head of /metachris/py2app
|
||||||
pip install git+https://github.com/metachris/py2app
|
pip install git+https://github.com/metachris/py2app
|
||||||
|
|
||||||
mkdir -p $tmp
|
|
||||||
cd $tmp
|
|
||||||
|
|
||||||
NAME=`python setup.py --name`
|
NAME=`python setup.py --name`
|
||||||
VERSION=`python setup.py -V`
|
VERSION=`python setup.py -V`
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
Loading…
Reference in a new issue