You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
316 B
13 lines
316 B
4 months ago
|
#!/bin/bash
|
||
|
|
||
|
check_travis_yml() {
|
||
|
X=`mktemp`
|
||
|
if ! (extras/scripts/travis_yml_generator.py >$X && cmp -s $X .travis.yml)
|
||
|
then
|
||
|
echo 'The .travis.yml file is out of date, run "extras/scripts/travis_yml_generator.py >.travis.yml" and try again.'
|
||
|
return 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
check_travis_yml || exit 1
|