Browse Source
fix: awk to properly grab the server pid when spaces are present in the session name (#2997)
pull/3007/head
Ryan Walters
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
lgsm/functions/info_distro.sh
|
|
@ -9,7 +9,7 @@ functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
|
|
|
|
### Game Server pid |
|
|
|
if [ "${status}" == "1" ]; then |
|
|
|
gameserverpid=$(tmux list-sessions -F "#{session_name} #{pane_pid}" | grep "^${sessionname} " | awk '{print $2}') |
|
|
|
gameserverpid=$(tmux list-sessions -F "#{session_name} #{pane_pid}" | grep "^${sessionname} " | awk '{print $NF}') |
|
|
|
fi |
|
|
|
### Distro information |
|
|
|
|
|
|
|