From 598f765960ce850fb17ff68bc1461a30031b608d Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Wed, 1 May 2019 16:03:35 -0700 Subject: [PATCH] Fix net.sh for running on macos (#4107) automerge --- net/net.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/net.sh b/net/net.sh index 18c1817f50..6aedf07049 100755 --- a/net/net.sh +++ b/net/net.sh @@ -329,7 +329,7 @@ startNode() { " ) >> "$logFile" 2>&1 & declare pid=$! - ln -sfT "fullnode-$ipAddress.log" "$netLogDir/fullnode-$pid.log" + ln -sf "fullnode-$ipAddress.log" "$netLogDir/fullnode-$pid.log" pids+=("$pid") } @@ -575,7 +575,7 @@ stopNode() { ) >> "$logFile" 2>&1 & declare pid=$! - ln -sfT "stop-fullnode-$ipAddress.log" "$netLogDir/stop-fullnode-$pid.log" + ln -sf "stop-fullnode-$ipAddress.log" "$netLogDir/stop-fullnode-$pid.log" if $block; then wait $pid else