Alexander Afanasyev | bc98fcf | 2014-08-16 23:18:50 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 2 | set -e |
Alexander Afanasyev | bc98fcf | 2014-08-16 23:18:50 -0700 | [diff] [blame] | 3 | |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 4 | DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) |
Alexander Afanasyev | bc98fcf | 2014-08-16 23:18:50 -0700 | [diff] [blame] | 5 | |
Nick G | d69f9a3 | 2016-08-23 11:30:02 -0500 | [diff] [blame^] | 6 | for file in "$DIR"/.jenkins.d/*; do |
| 7 | [[ -f $file && -x $file ]] || continue |
| 8 | echo "Run: $file" |
| 9 | "$file" |
Alexander Afanasyev | bc98fcf | 2014-08-16 23:18:50 -0700 | [diff] [blame] | 10 | done |