From dfbcee27ebba6cd820d9fb9916a945ac67f4428c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 20 Dec 2015 18:47:58 +0000 Subject: [PATCH] added missing quotes --- functions/fn_check_ip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/fn_check_ip b/functions/fn_check_ip index e5b81268d..67c76fec8 100644 --- a/functions/fn_check_ip +++ b/functions/fn_check_ip @@ -2,12 +2,12 @@ # LGSM fn_check_ip function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -lgsm_version="061115" +lgsm_version="201215" # Description: Automatically identifies the server interface IP. # If multiple interfaces are detected the user will need to manualy set using ip="0.0.0.0". -if [ ! -f /bin/ip ]; then +if [ ! -f "/bin/ip" ]; then ipcommand="/sbin/ip" else ipcommand="ip"