From 8e88ab874f3ffdbc0944d004aab26621dffbd56d Mon Sep 17 00:00:00 2001 From: Uncle Stretch Date: Sun, 10 Nov 2024 23:11:02 +0300 Subject: [PATCH] fix for the read flag Signed-off-by: Uncle Stretch --- scripts/starter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/starter.sh b/scripts/starter.sh index 9b21215..8bd06ff 100755 --- a/scripts/starter.sh +++ b/scripts/starter.sh @@ -311,7 +311,7 @@ if [[ $ARGUMENTS = true ]]; then CLI_ARGS+=("--bootnodes=$bootnodes") fi - read -r "[?] address that other nodes will use to connect: (default: current ip)" public_addr + read -p "[?] address that other nodes will use to connect: (default: current ip)" public_addr if [ ! -z $public_addr ]; then CLI_ARGS+=("--public-addr=$public_addr") fi