Skip to content
Snippets Groups Projects
Select Git revision
  • 7f5c4507f9dc3194dd99f975eb6996a32d06557c
  • master default
2 results

dashboard.md

Blame
  • 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