From f9a3dffd00a5d91cda73f07085f06f4811088d22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Tue, 9 Apr 2019 20:51:03 +0200 Subject: [PATCH] don't use `realpath` (#244) --- scripts/build_testnet_node.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build_testnet_node.sh b/scripts/build_testnet_node.sh index 6d7c2a667..81c8898b1 100755 --- a/scripts/build_testnet_node.sh +++ b/scripts/build_testnet_node.sh @@ -29,7 +29,7 @@ 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 "Database and configuration files placed in:" echo -echo " $(realpath ~/.cache/nimbus/BeaconNode/${NETWORK_NAME})" +echo " ${HOME}/.cache/nimbus/BeaconNode/${NETWORK_NAME}" echo