Changeset - 99e0a36a57fc
[Not reviewed]
0 1 0
x - 6 hours ago 2025-08-23 02:25:21
xbr@c3l.lu
fix: broken test on variable in build.sh
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
build_script/build.sh
Show inline comments
 
@@ -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
0 comments (0 inline, 0 general)