Skip to content

Commit

Permalink
Merge pull request xapi-project#2648 from robhoes/master
Browse files Browse the repository at this point in the history
travis/deploy: fix redirection
  • Loading branch information
simonjbeaumont committed Apr 27, 2016
2 parents 20ea998 + f7c85dc commit 683ae78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy.sh
Expand Up @@ -25,12 +25,12 @@ git config --global user.email "travis@travis-ci.org"
git config --global user.name "Travis"

# Using token clone xapi-project.github.io.git
git clone --quiet "https://$GH_TOKEN@github.com/xapi-project/xapi-project.github.io.git" &2>1 > /dev/null
git clone --quiet "https://$GH_TOKEN@github.com/xapi-project/xapi-project.github.io.git" &>/dev/null

# Copy data we're interested in into the right place
cd xapi-project.github.io
cp -f $HOME/xenapi.json _data/
cp -f $HOME/release_info.json _data/

git commit -am "Updated XenAPI docs based on xen-api/${rev}"
git push -q origin master &2>1 > /dev/null
git push -q origin master &>/dev/null

0 comments on commit 683ae78

Please sign in to comment.