Improved install script

This commit is contained in:
Eduard Urbach 2018-04-10 12:43:42 +02:00
parent a7012b6e8d
commit 373fe7e0db

View File

@ -46,7 +46,16 @@ git clone https://github.com/animenotifier/database ~/.aero/db/arn
make ports
# Add "127.0.0.1 beta.notify.moe" to /etc/hosts
sudo -- sh -c -e "echo '127.0.0.1 beta.notify.moe' >> /etc/hosts"
if grep -Fxq "127.0.0.1 beta.notify.moe" /etc/hosts; then
echo "beta.notify.moe already resolves to localhost"
else
sudo -- sh -c -e "echo '127.0.0.1 beta.notify.moe' >> /etc/hosts"
echo "beta.notify.moe now resolves to localhost"
fi
# Test
make test
make test
# Finished
echo "Finished installation."
echo "You can now execute the 'run' command and open https://beta.notify.moe in your browser."