Commit 899a9cf6 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Ignore casing

parent 46c456da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"
    ;;