Skip to content
Snippets Groups Projects
Select Git revision
  • b451af83c7d09c4b9b54c2ad404a7a53daf57c59
  • main default protected
  • dev protected
  • f-render-html-properties
  • f-vishesh0932-ext-cosmetics
  • f-table-references
  • f-update-legacy-adapter
  • f-refactor-refs
  • f-fix-caosadvancedtools-refs
  • f-linkahead-rename
  • f-citation-cff
  • f-map-resolve-reference
  • dev-bmpg
  • f-form-select
  • f-doc-extention
  • f-geo-position-records
  • f-data-analysis
  • f-area-folder-drop
  • f-fix-get-parents
  • f-fix-110
  • f-entity-state
  • v0.16.0
  • v0.15.2
  • v0.15.1
  • v0.15.0
  • v0.14.0
  • v0.13.3
  • v0.13.2
  • v0.13.1
  • v0.13.0
  • v0.12.0
  • v0.11.1
  • v0.11.0
  • v0.10.1
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.0
  • v0.5.0
  • v0.4.2
41 results

install-sss.sh

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    install-sss.sh 614 B
    SRC_DIR=$1
    INSTALL_DIR=$2
    
    mkdir -p $INSTALL_DIR
    
    # from here on do your module-wise installing
    
    # ext_table_preview
    if [ "${BUILD_MODULE_EXT_BOTTOM_LINE_TABLE_PREVIEW}" == "ENABLED" ]; then
        mkdir -p $INSTALL_DIR/ext_table_preview
        cp $SRC_DIR/ext_table_preview/*.py $INSTALL_DIR/ext_table_preview/
        echo "installed all server-side scripts for ext_table_preview"
    fi
    # ext_file_download; should always be installed - No build variable
    mkdir -p $INSTALL_DIR/ext_file_download
    cp $SRC_DIR/ext_file_download/*.py $INSTALL_DIR/ext_file_download/
    echo "installed all server-side scripts for ext_file_download"