Skip to content

Commit 17d2cc1

Browse files
authored
Merge pull request #65 from linuxserver/drizuid-patch-1
allow case insensitive TRUE/true/True/trUE/etc
2 parents 0a6577d + 62273c1 commit 17d2cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

root/app/duck.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/with-contenv bash
22
# shellcheck shell=bash
33

4-
if [ "${LOG_FILE}" = "true" ]; then
4+
if [ "${LOG_FILE,,}" = "true" ]; then
55
DUCK_LOG="/config/duck.log"
66
touch "${DUCK_LOG}"
77
touch /config/logrotate.status

0 commit comments

Comments
 (0)