[build] Don't use unsupported ${var,,} syntax on some shells (fix #5082)

This commit is contained in:
David Capello 2025-04-18 22:43:36 -03:00
parent 753d892af2
commit 2e37ac9b83
1 changed files with 2 additions and 1 deletions

View File

@ -245,7 +245,8 @@ else
# New build
if [[ "$build_n" == "n" || "$build_n" == "N" ]] ; then
read -p "Select build type [RELEASE/debug]? "
if [[ "${REPLY,,}" == "debug" ]] ; then
REPLY=$(echo $REPLY | tr '[:upper:]' '[:lower:]')
if [[ "${REPLY}" == "debug" ]] ; then
build_type=Debug
new_build_name=aseprite-debug
else