Yingdi Yu | 906c2ea | 2014-10-31 11:24:50 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
2 | set -e | ||||
3 | |||||
Alexander Afanasyev | f3192eb | 2016-12-19 17:11:20 -0800 | [diff] [blame] | 4 | DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) |
Yingdi Yu | 906c2ea | 2014-10-31 11:24:50 -0700 | [diff] [blame] | 5 | |
Alexander Afanasyev | f3192eb | 2016-12-19 17:11:20 -0800 | [diff] [blame] | 6 | for file in "$DIR"/.jenkins.d/*; do |
7 | [[ -f $file && -x $file ]] || continue | ||||
8 | echo "Run: $file" | ||||
9 | "$file" | ||||
10 | done |