Fix travis build

This commit is contained in:
uwap 2018-02-02 08:00:56 +01:00
parent c7ca716802
commit f70f2977ab
3 changed files with 9 additions and 2 deletions

7
travis.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
yarn lint && for conf in $(ls config/); do
if [ $conf == "utils.js" ]; then
continue
fi
yarn build $conf && yarn production-build $conf
done || exit 1