mirror of
https://github.com/rbenv/ruby-build.git
synced 2026-05-16 01:06:52 -04:00
10 lines
194 B
Text
10 lines
194 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
[ -d ./bats/bin ] && export PATH=./bats/bin:"$PATH"
|
||
|
|
|
||
|
|
bats -t test
|
||
|
|
|
||
|
|
if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then
|
||
|
|
./script/mirror update "$TRAVIS_COMMIT_RANGE"
|
||
|
|
fi
|