Skip to content

Commit 57ebe20

Browse files
authored
fix(parse-details): change heading of output & add hint for creating new variables (#4531)
* Added hint for new variables * Fixed heading of output
1 parent a6b8143 commit 57ebe20

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

lgsm/modules/command_dev_parse_game_details.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,15 @@ done
144144
# Sort and output the available distro details.
145145
if [ -n "$available_details" ]; then
146146
echo -e ""
147-
echo -e "${bold}${lightgreen}Available Distro Details${default}"
147+
echo -e "${bold}${lightgreen}Available Gameserver Details${default}"
148148
fn_messages_separator
149149
echo -e "${available_details}" | sort
150150
fi
151151

152152
# Output the missing server details if there are any.
153153
if [ -n "$missing_details" ]; then
154154
echo -e ""
155-
echo -e "${lightgreen}Missing or unsupported Server Details${default}"
155+
echo -e "${lightgreen}Missing or unsupported Gameserver Details${default}"
156156
fn_messages_separator
157157
echo -e "${missing_details}" | sort
158158
fi

lgsm/modules/info_distro.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Website: https://linuxgsm.com
66
# Description: Variables providing useful info on the Operating System such as disk and performace info.
77
# Used for command_details.sh, command_debug.sh and alert.sh.
8+
# !Note: When adding variables to this script, ensure that they are also added to the command_dev_parse_distro_details.sh script.
89

910
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1011

lgsm/modules/info_game.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Contributors: http://linuxgsm.com/contrib
55
# Website: https://linuxgsm.com
66
# Description: Gathers various game server information.
7+
# !Note: When adding variables to this script, ensure that they are also added to the command_dev_parse_game_details.sh script.
78

89
# shellcheck disable=SC2317
910
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"

0 commit comments

Comments
 (0)