mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* Removed a bunch of old examples. * moved grafana back. * Bumping, circle didn't do build... ?
11 lines
168 B
Bash
Executable File
11 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
testlist=`find -L "$@" -type f -executable -name test.sh`
|
|
|
|
for test in $testlist
|
|
do
|
|
cd $(dirname $test)
|
|
echo "${test}"
|
|
./test.sh
|
|
cd ..
|
|
done |