Gitiles
Code Review
Sign In
gerrit.named-data.net
/
ndn-cxx
/
a87e0a8616cd23fa312e8b42f6fade28074c52bd
/
.
/
.jenkins
blob: 84dc23da5b61a67bf974e1954eec072ca0b1fe67 [
file
] [
log
] [
blame
]
Alexander Afanasyev
a87e0a8
2014-10-21 14:09:19 -0400
[
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