mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-08 01:48:53 +00:00
14 lines
210 B
Bash
Executable file
14 lines
210 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
|
|
|
|
# only commit the builds when not a PR
|
|
# gulp commitDevBuild
|
|
|
|
# commit the build
|
|
sh push_build.sh
|
|
|
|
fi
|
|
|
|
# do coveralls either way
|
|
gulp coveralls
|