fix: Ignore casing

This commit is contained in:
Kroese 2023-11-20 12:45:37 +01:00 committed by GitHub
parent 46c456dafc
commit 899a9cf6c4

View file

@ -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"
;;