Gitiles
Code Review
Sign In
gerrit.named-data.net
/
NLSR
/
bc98fcfe3752f21a16228473b253c0816335440e
/
.
/
.jenkins
blob: 5b3f477da906afe9af0f08f71f4493a560218aa6 [
file
] [
log
] [
blame
]
Alexander Afanasyev
bc98fcf
2014-08-16 23:18:50 -0700
[
diff
] [
blame^
]
1
#!/usr/bin/env bash
2
3
DIR
=
"$( cd "
$
(
dirname
"${BASH_SOURCE[0]}"
)
" && pwd )"
4
5
for
i
in
`find "$DIR/.jenkins.d" -type f -perm +111 | sort`
;
do
6
echo
"Run: $i"
7
$i
8
done