mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-14 17:15:18 +01:00
12 lines
135 B
Bash
Executable File
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;
|