blob: 0d3487564f086e9e1dfc58c0ba824e42db9b06c6 [file] [log] [blame]
#!/usr/bin/env bash
set -e
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
for i in $( find "$DIR/.jenkins.d" -type f -perm /111 | sort ); do
echo "Run: $i"
"$i"
done