From 99e0a36a57fc18a4ec2b7440a5a87162918f522b 2025-08-23 02:25:21 From: xbr Date: 2025-08-23 02:25:21 Subject: [PATCH] fix: broken test on variable in build.sh --- diff --git a/build_script/build.sh b/build_script/build.sh index 6d229f37ec4306366aeab41a4366340c253fbe1b..1d31213964e685ab10155eabde0748c0121fd7cf 100755 --- a/build_script/build.sh +++ b/build_script/build.sh @@ -89,19 +89,19 @@ move_output_images() { echo "Moving output images to output-images-$1" } -if [ -n $BUILD_EXPERIMENTAL ]; then +if [ -n "$BUILD_EXPERIMENTAL" ]; then set_site_directory $EXPERIMENTAL_SITE build move_output_images experimental fi -if [ -n $BUILD_BETA ]; then +if [ -n "$BUILD_BETA" ]; then set_site_directory $BETA_SITE build move_output_images beta fi -if [ -n $BUILD_STABLE ]; then +if [ -n "$BUILD_STABLE" ]; then set_site_directory $STABLE_SITE build move_output_images stable