Skip to content

Commit

Permalink
Avoid generating nohup log file
Browse files Browse the repository at this point in the history
  • Loading branch information
IGPenguin committed Oct 17, 2024
1 parent 9ac12bb commit 3e469de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common_tools
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@ ios_get_devices(){

if [[ $(ps S | grep -c "go-ios tunnel") -ne 2 ]]; then
echo "♻️ Launching go-ios tunnel for maximum iOS compatibility (17+)"
nohup go-ios tunnel start --userspace --nojson &
nohup go-ios tunnel start --userspace --nojson >/dev/null 2>&1 &
GO_IOS_TUNNEL_PID=$!
#echo $GO_IOS_TUNNEL_PID
#TODO save tunnel port and use it to avoid delays when trying various ports
disown $GO_IOS_TUNNEL_PID
sleep 1
fi
Expand Down

0 comments on commit 3e469de

Please sign in to comment.