Tone.js/gulp/update_site.sh
2017-08-30 11:12:33 -04:00

19 lines
354 B
Bash
Executable file

#!/bin/bash
TMP_DIR=$(pwd)/tmp/
mkdir $TMP_DIR
SITE_DIR=$TMP_DIR/Site
# clone the tonejs.github.io site
if [ "$TRAVIS" = "true" ]; then
GITHUB_USER=${GH_TOKEN}@
fi
git clone https://${GITHUB_USER}github.com/Tonejs/tonejs.github.io $SITE_DIR > /dev/null 2>&1
git checkout travis-two
cd $SITE_DIR
# run the update script
sh update.sh
rm -rf $TMP_DIR