faas/build.sh
Alex Ellis (OpenFaaS Ltd) 579b9124e4 Delete the classic watchdog
This component now lives at:

https://github.com/openfaas/classic-watchdog/

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-11-17 11:22:15 +00:00

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)