f3192eb789
Change-Id: I825ea4fdf4f40c4af06b5667af432f1c0eab368d
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
for file in "$DIR"/.jenkins.d/*; do
|
|
[[ -f $file && -x $file ]] || continue
|
|
echo "Run: $file"
|
|
"$file"
|
|
done
|