diff --git a/sample-functions/build_all.sh b/sample-functions/build_all.sh index 15bca726..ef66154f 100755 --- a/sample-functions/build_all.sh +++ b/sample-functions/build_all.sh @@ -1,16 +1,3 @@ #!/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 +faas-cli build -f samples.yml --parallel 4