1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-14 17:15:18 +01:00
blog/_ci/build.sh
2017-11-25 17:58:19 +01:00

12 lines
135 B
Bash
Executable File

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