1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 01:58:50 +02:00
blog/.ci/build.sh

10 lines
120 B
Bash
Raw Normal View History

2015-08-30 14:02:02 +02:00
#!/usr/bin/env bash
if [ $TRAVIS_BRANCH == "master" ]; then
gulp build --production
else
gulp build
fi;
exit;