Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Oct 1, 2024
1 parent f455566 commit 051d760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .evergreen/process-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ killport() {
fuser --kill -${signal} "$port/tcp" || true
elif [ -x "$(command -v ss)" ]; then
for pid in $(ss -tlnp "sport = :$port" | awk 'NR>1 {split($7,a,","); print a[1]}' | tr -d '[:space:]'); do
echo "Killing pid $pid for port $port with signal $signal using kill" 1>&2
echo "Killing pid $pid for port $port with signal $signal using kill" 1>&2
kill "$pid" -${signal} || true
done
else
Expand Down

0 comments on commit 051d760

Please sign in to comment.