testnet: print instructions and configuration path after building

This commit is contained in:
Jacek Sieka 2019-03-29 13:48:02 -06:00
parent 3b2b65a21e
commit c9e0fed4ea
No known key found for this signature in database
GPG Key ID: 6299FEB3EB6FA465
1 changed files with 7 additions and 3 deletions

View File

@ -25,7 +25,11 @@ if [ ! -d ~/.cache/nimbus/BeaconNode/${NETWORK_NAME}/validators ]; then
fi
echo
echo "A binary for connecting to $NETWORK_NAME was placed in '$BEACON_NODE_BIN'"
echo "To sync with the network, launch it with default parameters"
echo "Done! You're now ready to connect to $NETWORK_NAME by running:"
echo
echo " $BEACON_NODE_BIN"
echo
echo "Database and configuration files in:"
echo
echo " $(realpath ~/.cache/nimbus/BeaconNode/${NETWORK_NAME})"
echo