Skip to content

Commit b6db987

Browse files
committed
wrong bollean case for R part of the script corrected
1 parent 8f57176 commit b6db987

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

install_vivid_volcano.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -534,18 +534,18 @@ setup_enhanced_renv_environment() {
534534
print_success "renv is available"
535535

536536
# Check system library availability
537-
local cairo_available=false
538-
local xml2_available=false
537+
local cairo_available=FALSE
538+
local xml2_available=FALSE
539539

540540
if check_system_library "cairo" "cairo/cairo.h" "cairo"; then
541-
cairo_available=true
541+
cairo_available=TRUE
542542
print_info "Cairo system library: Available"
543543
else
544544
print_info "Cairo system library: Not available"
545545
fi
546546

547547
if check_system_library "xml2" "libxml/parser.h" "libxml-2.0"; then
548-
xml2_available=true
548+
xml2_available=TRUE
549549
print_info "XML2 system library: Available"
550550
else
551551
print_info "XML2 system library: Not available"

0 commit comments

Comments
 (0)