mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-13 16:34:39 +00:00
10 lines
366 B
Bash
Executable File
10 lines
366 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 > trigger_build.sh
|
|
chmod +x trigger_build.sh
|
|
./trigger_build.sh
|
|
fi
|