mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-22 16:45:03 +00:00
14 lines
212 B
Bash
Executable file
14 lines
212 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
|
|
bash push_build.sh
|
|
|
|
fi
|
|
|
|
# do coveralls either way
|
|
gulp coveralls
|