about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide/ci
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-01-23 21:45:25 -0500
committerNiko Matsakis <niko@alum.mit.edu>2018-01-23 21:45:37 -0500
commit39a09d577be63a033334ca5e2cd8a3e0a9016d69 (patch)
treeb0d1acff4ec114cc7893c28336e14c9cc6a03d82 /src/doc/rustc-dev-guide/ci
parente3bca40f952dc507a40295d8281608c5c231ecec (diff)
downloadrust-39a09d577be63a033334ca5e2cd8a3e0a9016d69.tar.gz
rust-39a09d577be63a033334ca5e2cd8a3e0a9016d69.zip
try to use travis's builtin deploy workflow
Diffstat (limited to 'src/doc/rustc-dev-guide/ci')
-rw-r--r--src/doc/rustc-dev-guide/ci/github_pages.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/ci/github_pages.sh b/src/doc/rustc-dev-guide/ci/github_pages.sh
index b0dc26902bf..ffd89ad5227 100644
--- a/src/doc/rustc-dev-guide/ci/github_pages.sh
+++ b/src/doc/rustc-dev-guide/ci/github_pages.sh
@@ -6,7 +6,6 @@ BOOK_DIR=book
 # Only upload the built book to github pages if it's a commit to master
 if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false ]; then
     mdbook build 
-    ghp-import -p $BOOK_DIR
 else
     echo Skipping 'mdbook build' because this is not master or this is just a PR.
 fi