mirror of
https://github.com/nolanlawson/pinafore
synced 2025-01-21 17:28:54 +01:00
9 lines
133 B
Bash
9 lines
133 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false ]; then
|
||
|
npm run deploy-dev
|
||
|
fi
|