blob: 5b3f477da906afe9af0f08f71f4493a560218aa6 [file] [log] [blame]
Alexander Afanasyevbc98fcf2014-08-16 23:18:50 -07001#!/usr/bin/env bash
2
3DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4
5for i in `find "$DIR/.jenkins.d" -type f -perm +111 | sort`; do
6 echo "Run: $i"
7 $i
8done