Skip to content

Commit

Permalink
feat: TOOLS-2809 add -n to netstat (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse S authored Jan 4, 2024
1 parent 0cddd02 commit 8b8f7bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2883,7 +2883,7 @@ def get_system_commands(port=3000) -> list[list[str]]:
if "darwin" in platform.system().lower():
netstat_cmds = ["netstat -rn"]
else:
netstat_cmds = ["netstat"]
netstat_cmds = ["netstat -n"]

# cmd and alternative cmds are stored in list of list instead of dic to
# maintain proper order for output
Expand Down

0 comments on commit 8b8f7bb

Please sign in to comment.