Skip to content

Commit

Permalink
download lbrycrd binaries and set up lbrycrddpath.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrobison committed Jul 4, 2016
1 parent 8c3652e commit 7cd30ef
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packaging/ubuntu/lbry
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
#!/bin/bash

if [ -f "~/.lbrycrddpath.conf" ]; then
lbrycrdd_path = `cat ~/.lbrycrddpath.conf`
else
mkdir -p "~/.lbrycrd"
cd ~/.lbrycrd
echo "Downloading lbrycrd binaries"
wget http://s3.amazonaws.com/files.lbry.io/bins.zip
unzip -o bins.zip
rm bins.zip
echo `pwd`/lbrycrdd > ~/.lbrycrddpath.conf
fi

set -euo pipefail

WEB_UI_BRANCH='master'
Expand Down

0 comments on commit 7cd30ef

Please sign in to comment.