Tone.js/gulp/deploy_updates.sh

11 lines
142 B
Bash
Raw Normal View History

#!/bin/bash
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
2017-08-30 13:45:22 +00:00
# commit the build
2017-08-30 15:12:33 +00:00
sh push_build.sh
2017-08-30 13:45:22 +00:00
2017-08-30 15:12:33 +00:00
# update the site
2017-08-30 15:50:43 +00:00
sh update_site.sh
2017-08-08 23:57:38 +00:00
fi