Force build type to be lowercase.

This commit is contained in:
Scott Duensing 2023-05-10 21:10:48 -05:00
parent 139f1d8fe3
commit 7b6aaf0099

View file

@ -139,7 +139,7 @@ function doBuild() {
while IFS= read -r LINE; do
# If we don't have a project type, grab it from the first line of the project file and set things up.
if [[ -z ${PROJECT_TYPE} ]]; then
PROJECT_TYPE=${LINE}
PROJECT_TYPE=${LINE,,}
# Skip to next loop pass.
continue
fi