docs(guide): copy over html files, not markdown files

This commit is contained in:
Sean McArthur
2016-07-15 14:41:04 -07:00
parent e1542a609f
commit c81cd4b0d5
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ for f in ./doc/**/*.md; do
rustdoc $f -L ./target/debug -L ./target/debug/deps -o "$(dirname $f)"; rustdoc $f -L ./target/debug -L ./target/debug/deps -o "$(dirname $f)";
done done
cp --parent ./doc/**/*.md ./target cp --parent ./doc/**/*.html ./target
git clone --branch gh-pages "https://$TOKEN@github.com/${TRAVIS_REPO_SLUG}.git" deploy_docs git clone --branch gh-pages "https://$TOKEN@github.com/${TRAVIS_REPO_SLUG}.git" deploy_docs
cd deploy_docs cd deploy_docs

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "hyper" name = "hyper"
version = "0.9.4" version = "0.10.0-a.0"
description = "A modern HTTP library." description = "A modern HTTP library."
readme = "README.md" readme = "README.md"
documentation = "http://hyperium.github.io/hyper" documentation = "http://hyperium.github.io/hyper"