mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
10 lines
120 B
Bash
Executable File
10 lines
120 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ $TRAVIS_BRANCH == "master" ]; then
|
|
gulp build --production
|
|
else
|
|
gulp build
|
|
fi;
|
|
|
|
exit;
|