Skip to content
Snippets Groups Projects
Select Git revision
  • 973f4f790c7d77bf375fb0e4ad78e25e0d99c29a
  • main default protected
  • f-better-sss-bin-dir
  • dev protected
  • f-remove-dropoffbox
  • f-sss4grpc
  • f-refactor-compose
  • f-real-id
  • f-doip
  • f-filesystem-import
  • henrik-tmp
  • f-filesystem-link
  • f-filesystem-directory
  • f-filesystem-core
  • f-filesystem-cleanup
  • f-string-ids
  • f-filesystem-main
  • f-linkahead-rename-before
  • f-linkahead-rename
  • f-rename-li
  • f-experiment-trino
  • v0.13.0 protected
  • v0.12.3 protected
  • v0.12.2 protected
  • v0.12.1 protected
  • v0.12.0 protected
  • v0.11.0 protected
  • v0.10.0 protected
  • v0.9.0 protected
  • v0.8.1 protected
  • v0.8.0 protected
  • v0.7.3 protected
  • v0.7.2 protected
  • v0.7.1 protected
  • v0.6.0 protected
  • v0.5.0 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • working_sss protected
  • v0.1 protected
40 results

bad.tsv

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"