Merge pull request #106 from liilac/fix-bootstrap-script

fix lokinet bootstrap script
pull/116/head
Ryan Tharp 6 years ago committed by GitHub
commit fb5f1225b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,9 +2,18 @@
# this shell script will be replaced by a proper program in the future (probably)
#
if [ "X$1" = "X" ] ; then url="https://i2p.rocks/i2procks.signed" ; else url="$1" ; fi
if [ -z "$1" ]
then
url="https://i2p.rocks/i2procks.signed"
else
url="$1"
fi
echo "downloading $url"
if [ ! -d $HOME/.lokinet/]; then
if [ ! -d "$HOME/.lokinet" ]
then
mkdir $HOME/.lokinet
fi
wget -O $HOME/.lokinet/bootstrap.signed "$url" || echo "failed to download bootstrap from $url"

Loading…
Cancel
Save