diff options
Diffstat (limited to 'scripts/testing/lib/network-diagnostics.sh')
| -rw-r--r-- | scripts/testing/lib/network-diagnostics.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/testing/lib/network-diagnostics.sh b/scripts/testing/lib/network-diagnostics.sh index d73ffe5..674aeba 100644 --- a/scripts/testing/lib/network-diagnostics.sh +++ b/scripts/testing/lib/network-diagnostics.sh @@ -53,7 +53,7 @@ run_network_diagnostics() { # Show network info info "Network configuration:" - $ssh_base "ip addr show | grep 'inet ' | grep -v '127.0.0.1'" 2>/dev/null | while read line; do + $ssh_base "ip addr show | grep 'inet ' | grep -v '127.0.0.1'" 2>/dev/null | while IFS= read -r line; do info " $line" done |
