1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-14 17:15:18 +01:00
blog/_ci/build.sh
2016-04-24 02:58:05 +02:00

10 lines
120 B
Bash
Executable File

#!/usr/bin/env bash
if [ $TRAVIS_BRANCH == "master" ]; then
gulp build --production
else
gulp build
fi;
exit;