From 8a7600513564a531e5b545dd389bf1666feae4d1 Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Thu, 29 May 2025 09:28:34 -0400 Subject: [PATCH] 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 --- configure.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index 15ee9d24..3aebf19c 100755 --- a/configure.sh +++ b/configure.sh @@ -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