From 49e734a96eb91e3c82374fd31c60c75d18174118 Mon Sep 17 00:00:00 2001 From: gOOvER Date: Sun, 24 Mar 2024 12:29:12 +0100 Subject: [PATCH] typo --- games/dayz/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/dayz/entrypoint.sh b/games/dayz/entrypoint.sh index f6808e4..2c35f64 100644 --- a/games/dayz/entrypoint.sh +++ b/games/dayz/entrypoint.sh @@ -164,7 +164,7 @@ function ModsLowercase { echo -e "${BLUE}---------------------------------------------------------------------${NC}" echo -e "\n\tMaking mod ${CYAN}$1${NC} files/folders lowercase..." echo -e "${BLUE}---------------------------------------------------------------------${NC}" - for SRC in `find ./@$1 -depth` + for SRC in `find ./$1 -depth` do DST=`dirname "${SRC}"`/`basename "${SRC}" | tr '[A-Z]' '[a-z]'` if [ "${SRC}" != "${DST}" ]