mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
10 lines
174 B
Bash
Executable File
10 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -s "$TAG" ] ; then
|
|
echo "This build will be published under the tag: ${TAG}"
|
|
fi
|
|
|
|
(cd gateway && ./build.sh)
|
|
(cd auth/basic-auth && ./build.sh)
|