Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
games/base/hlds/server.sh: Replace 'egrep' with 'grep -E'
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Reichl <[email protected]>
  • Loading branch information
Timo Reichl committed Jul 10, 2022
1 parent 287b7bc commit f31578c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion image/games/base/hlds/usr/local/bin/server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ _clear_console() {


_update_restart_needed() {
return $(${TMUX_CMD} capture-pane -pt ${STEAMCMD_SERVER_SESSION_NAME} | egrep "${SIGNAL_HLDS_UPDATE_FAILED}" > /dev/null)
return $(${TMUX_CMD} capture-pane -pt ${STEAMCMD_SERVER_SESSION_NAME} | grep -E "${SIGNAL_HLDS_UPDATE_FAILED}" > /dev/null)
}


Expand Down

0 comments on commit f31578c

Please sign in to comment.