blob: 674d751a282d797def757a6f9088fe9b94c3df5e [file] [log] [blame]
Alexander Afanasyev21034bf2014-09-02 18:31:53 -07001#!/usr/bin/env bash
Shock Jiang2d8483c2014-10-30 10:15:37 -07002set -e
Alexander Afanasyev21034bf2014-09-02 18:31:53 -07003
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -08004DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
Alexander Afanasyev21034bf2014-09-02 18:31:53 -07005
Alexander Afanasyev984ca9d2016-12-19 13:09:14 -08006for file in "$DIR"/.jenkins.d/*; do
7 [[ -f $file && -x $file ]] || continue
8 echo "Run: $file"
9 "$file"
Alexander Afanasyev21034bf2014-09-02 18:31:53 -070010done