From cd49efc997f2aa513e4021130b00f89d9434acdb Mon Sep 17 00:00:00 2001 From: gnzlbg <gonzalobg88@gmail.com> Date: Thu, 21 Feb 2019 08:46:25 +0100 Subject: [PATCH] Fix typo in README; do not generate .nojekyll file in gh-pages branch --- README.md | 2 +- ci/dox.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbedf839..f04816d9 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ libc = "0.2" crates. * `extra_traits`: all `struct`s implemented in `libc` are `Copy` and `Clone`. - This feature derives `Debug, `Eq`, `Hash`, and `PartialEq`. + This feature derives `Debug`, `Eq`, `Hash`, and `PartialEq`. ## Rust version support diff --git a/ci/dox.sh b/ci/dox.sh index 6c0f1a0c..da996604 100644 --- a/ci/dox.sh +++ b/ci/dox.sh @@ -62,6 +62,6 @@ set -x # If we're on travis, not a PR, and on the right branch, publish! if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then pip install ghp_import --install-option="--prefix=$HOME/.local" - "${HOME}/.local/bin/ghp-import" -n $TARGET_DOC_DIR + "${HOME}/.local/bin/ghp-import" $TARGET_DOC_DIR git push -qf "https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git" gh-pages fi -- GitLab