Skip to content
Snippets Groups Projects
Commit 950077d2 authored by Alex Ellis's avatar Alex Ellis Committed by GitHub
Browse files

Build the easy way

parent d2204b55
No related branches found
No related tags found
No related merge requests found
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment