Use the right CI branch

This commit is contained in:
Travis Ralston 2019-03-13 22:23:28 -06:00
parent 1fb8b23d4c
commit ef6313fbb4
2 changed files with 3 additions and 3 deletions

View File

@ -23,3 +23,4 @@ steps:
plugins: plugins:
- docker#v3.0.1: - docker#v3.0.1:
image: "node:10" image: "node:10"
propagate-environment: true

View File

@ -40,9 +40,8 @@ function dodep() {
# Try the PR author's branch in case it exists on the deps as well. # Try the PR author's branch in case it exists on the deps as well.
# Try the target branch of the push or PR. # Try the target branch of the push or PR.
# Use the default branch as the last resort. # Use the default branch as the last resort.
if [[ "$TRAVIS" == true ]]; then if [[ "$BUILDKITE" == true ]]; then
clone $org $repo $TRAVIS_PULL_REQUEST_BRANCH || clone $org $repo $BUILDKITE_BRANCH ||
clone $org $repo $TRAVIS_BRANCH ||
clone $org $repo $defbranch || clone $org $repo $defbranch ||
return $? return $?
else else