Compare commits

...

4 commits

Author SHA1 Message Date
Daniel Ceregatti
dd1be5e89f Fix status output formatting and text. 2025-08-15 11:03:48 -06:00
Daniel Ceregatti
24ee9b965b Fix status output formatting and text. 2025-08-15 10:58:04 -06:00
Daniel Ceregatti
cd3d884a9e Fix github URL for Deer Isle. 2025-08-15 10:57:43 -06:00
Daniel Ceregatti
941071b790 Fix wrong use of bash conditional. 2025-08-15 10:03:17 -06:00
4 changed files with 5 additions and 3 deletions

View file

@ -36,7 +36,7 @@ export cyan="\e[36m"
export release_server_appid=223350 export release_server_appid=223350
# Allow for the use of experimental via an environment variable # Allow for the use of experimental via an environment variable
if [ ${EXPERIMENTAL} != "" ] if [[ ${EXPERIMENTAL} != "" ]]
then then
export release_server_appid=1042420 export release_server_appid=1042420
fi fi

View file

@ -3,6 +3,6 @@
set -eE set -eE
MAP="DeerIsle" MAP="DeerIsle"
DIR="DayZ-Deerisle-Stable" DIR="Deerisle-Stable"
REPO="https://github.com/johnmclane666/${DIR}.git" REPO="https://github.com/johnmclane666/${DIR}.git"
MPDIR="empty.deerisle" MPDIR="empty.deerisle"

View file

@ -582,6 +582,7 @@ status(){
# Map # Map
MAP=${MAP} MAP=${MAP}
# Number of mods plus the list denoting on or off # Number of mods plus the list denoting on or off
echo
echo -ne "Server files installed: ${INSTALLED}" echo -ne "Server files installed: ${INSTALLED}"
if [[ "${INSTALLED}" = "${NO}" ]] if [[ "${INSTALLED}" = "${NO}" ]]
then then

View file

@ -301,9 +301,10 @@ Version: ${VERSION}"
MODS=$(list) MODS=$(list)
if [[ ${MODS} == "" ]] if [[ ${MODS} == "" ]]
then then
echo -ne "${red}none${default}" echo -ne "Mods: ${red}none${default}"
fi fi
echo -e "${MODS}" echo -e "${MODS}"
echo
} }
map(){ map(){