fix: Ignore casing
This commit is contained in:
parent
46c456dafc
commit
899a9cf6c4
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ set -Eeuo pipefail
|
|||
|
||||
: ${DISPLAY:='none'} # Display type
|
||||
|
||||
case "$DISPLAY" in
|
||||
case "${DISPLAY,,}" in
|
||||
vnc)
|
||||
DISPLAY_OPTS="-nographic -vga std -vnc :0"
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue