about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/ci/github_pages.sh2
1 files changed, 1 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 f5dd7898ba3..b0dc26902bf 100644
--- a/src/doc/rustc-dev-guide/ci/github_pages.sh
+++ b/src/doc/rustc-dev-guide/ci/github_pages.sh
@@ -6,7 +6,7 @@ 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 $BOOK_DIR
+    ghp-import -p $BOOK_DIR
 else
     echo Skipping 'mdbook build' because this is not master or this is just a PR.
 fi