summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-07-09 11:16:47 +0200
committergnzlbg <gonzalobg88@gmail.com>2019-07-27 13:25:22 +0200
commitd03a1ff2dc55044f4ac919c2673608d65791efbe (patch)
tree9717ee6ea71887ec046dab9436ba9ffeb94c93df /ci
parent189ea88d04ecfc2e30c5483f42d85f5d97c62621 (diff)
downloadrust-libc-d03a1ff2dc55044f4ac919c2673608d65791efbe.tar.gz
Use cargo-xbuild for building the documentation
Diffstat (limited to 'ci')
-rw-r--r--ci/dox.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/dox.sh b/ci/dox.sh
index 40b7dae444..823c811352 100644
--- a/ci/dox.sh
+++ b/ci/dox.sh
@@ -19,7 +19,7 @@ if ! rustc --version | grep -E "nightly" ; then
fi
rustup component add rust-src
-cargo +nightly install xargo -Z install-upgrade
+cargo +nightly install cargo-xbuild -Z install-upgrade
# List all targets that do currently build successfully:
# shellcheck disable=SC1003
@@ -50,7 +50,7 @@ while read -r target; do
# If cargo doc fails, then try xargo:
if ! cargo doc --target "${target}" \
--no-default-features --features extra_traits ; then
- xargo doc --target "${target}" \
+ cargo xdoc --target "${target}" \
--no-default-features --features extra_traits
fi