configure.sh: Fix default build-name

Have to put setting environment variable on its own line as
otherwise it just just sets that value for that one line.

Link: https://github.com/ValveSoftware/Proton/pull/8747
This commit is contained in:
Tyson Whitehead 2025-05-29 09:28:34 -04:00 committed by Arkadiusz Hiler
parent b8ebaf63de
commit 8a76005135

View File

@ -117,7 +117,8 @@ function configure() {
if [[ -n $build_name ]]; then
info "Configuring with build name: $build_name"
else
build_name="$DEFAULT_BUILD_NAME" info "No build name specified, using default: $build_name"
build_name="$DEFAULT_BUILD_NAME"
info "No build name specified, using default: $build_name"
fi
if [[ ${build_name,,} == *proton* ]]; then