1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-02-04 08:08:04 +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;