Skip to content
Snippets Groups Projects

Lookup CI setup scripts in a argument provided path

Merged Prada Sarasola, Miguel requested to merge configurable-ci-setup-lookup-path into master
1 file
+ 2
0
Compare changes
  • Side-by-side
  • Inline
#!/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 {})) ; {} ' \;
echo Finalized running the user entry scripts
Loading