Ocelot-Social/scripts/run_fullstack_tests.sh
Robert Schäfer 8b324fc8dd Download trigger_build in folder scripts/
This way, it does not get added to our docker images which we upload to
docker hub.
2018-12-10 17:39:47 +01:00

10 lines
390 B
Bash
Executable File

#!/usr/bin/env bash
if [[ -v TRAVIS_TOKEN ]]; then
# You need a Travis token to trigger the build on our meta repository.
# This token will not be available on forks of this repo.
curl -L https://raw.githubusercontent.com/Human-Connection/Human-Connection/master/scripts/trigger_build.sh > scripts/trigger_build.sh
chmod +x scripts/trigger_build.sh
./scripts/trigger_build.sh
fi