Commit 1fcf1efb authored by Ryan LeFevre's avatar Ryan LeFevre

Forgot to git push in docs deploy

parent d0f4f155
......@@ -51,6 +51,9 @@ task 'docs:deploy', 'Deploys updated documentation to GitHub Pages', ->
return console.log(err) if err?
console.log 'Committing new documentation'
exec 'git commit -a -m "Update documentation"', (err) ->
return console.log(err) if err?
console.log 'Pushing to GitHub...'
exec 'git push origin gh-pages', (err) ->
return console.log(err) if err?
console.log 'Switching back to master'
exec 'git checkout master', (err) ->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment