lbry-sdk/lbrynet/lbrynet_daemon/scripts/update_lbrynet.sh
2016-02-15 23:00:24 -05:00

34 lines
No EOL
784 B
Bash

#!/bin/sh
lbrynet_directory="/Users/${SUDO_USER}/Library/Application Support/lbrynet"
current_version=$(git ls-remote https://github.com/lbryio/lbry.git | grep HEAD | cut -f 1)
if [ -d "$lbrynet_directory" ]; then
if [ -f "${lbrynet_directory}/lbrynet_version.txt" ]; then
if grep -Fxq "$current_version" "${lbrynet_directory}/lbrynet_version.txt"; then
echo "LBRYnet version $current_version is up to date"
exit
fi
fi
fi
tmp=$(mktemp -d)
cd $tmp
echo "Downloading update"
git clone https://github.com/lbryio/lbry.git &>/dev/null
cd lbry
version=$(git rev-parse HEAD)
echo "Updating lbrynet"
sudo python setup.py install &>/dev/null
mkdir -p "$lbrynet_directory"
echo $version > "${lbrynet_directory}/lbrynet_version.txt"
echo "Cleaning up"
cd ../../
rm -rf $tmp