Skip to content
Snippets Groups Projects
Select Git revision
  • 3dad22c0c86ea5a1967d1e9fd33a93898c07915b
  • master default
  • include-tests
  • remove-yaml-quotes
  • configurable-ci-setup-lookup-path
  • dev-image-test-bak
  • dev-images
  • tmp/deploy-image-build
  • fast-ci
  • modular-templates
10 results

ros_entrypoint.bash

Blame
  • Forked from tecnalia_robotics-public / templates
    Source project has a limited visibility.
    ci_run_entry_points.sh 246 B
    #!/bin/bash
    
    echo Looking up and executing user entry scripts in: "$1"
    
    find -L "$1" -name ci_entry_script.bash -exec bash -c 'echo Running entry script from $(basename $(dirname $1)) ; $1 ' _ {} \;
    
    echo Finalized running the user entry scripts