pico/_build/deploy.sh
2017-11-05 02:36:50 +01:00

7 lines
147 B
Bash
Executable File

#!/usr/bin/env bash
if [ -n "$TRAVIS_TAG" ]; then
exec "$(dirname "$0")/deploy-release.sh"
else
exec "$(dirname "$0")/deploy-branch.sh"
fi