mirror of
https://github.com/nolanlawson/pinafore
synced 2024-12-12 18:28:03 +01:00
8eb30d02e9
* chore: cleanup travis scripts * remove unused script
9 lines
133 B
Bash
Executable File
9 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false ]; then
|
|
npm run deploy-dev
|
|
fi
|