Skip to content
Snippets Groups Projects
Select Git revision
  • b51a998ad98c4fcd338269872c83790cbf28f477
  • main default protected
  • renovate/lock-file-maintenance
  • demo protected
  • person-select-custom
  • dbp-translation-component
  • icon-set-mapping
  • port-i18next-parser
  • remove-sentry
  • favorites-and-recent-files
  • revert-6c632dc6
  • lit2
  • advertisement
  • wc-part
  • automagic
  • publish
  • wip-cleanup
  • demo-file-handling
18 results

vpu-spinner.js

Blame
  • build_otaconf_gateway.sh 347 B
    #!/bin/bash
    
    name="../otaconf-gateway.tapp"
    
    app="src/otaconf/gateway-node/autoexec.be"
    module1="src/otaconf/otaconf.be"
    # module2="src/mesh.be"
    
    build="build"
    temp="build/temp"
    
    mkdir "$build"
    mkdir "$temp"
    cp "$app" "$temp"
    cp "$module1" "$temp"
    # cp "$module2" "$temp"
    
    rm -rf "$name"
    cd "$temp"
    zip -0 -r "$name" .
    cd "../.."
    
    rm -rf "$temp"