mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 08:25:03 +00:00
This component now lives at: https://github.com/openfaas/classic-watchdog/ Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -s "$TRAVIS_TAG" ] ; then
|
|
echo "This build will be published under the tag: ${TRAVIS_TAG}"
|
|
fi
|
|
|
|
(cd gateway && ./build.sh)
|
|
(cd auth/basic-auth && ./build.sh)
|