mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
17 lines
189 B
Bash
Executable File
17 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export current=$(pwd)
|
|
|
|
for dir in `ls`;
|
|
do
|
|
test -d "$dir" || continue
|
|
cd $dir
|
|
echo $dir
|
|
|
|
if [ -e ./build.sh ]
|
|
then
|
|
./build.sh
|
|
fi
|
|
cd ..
|
|
done
|