summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2016-09-20 11:42:15 -0700
committerMatt Clay <matt@mystile.com>2016-09-20 11:42:15 -0700
commit34863959703e8d920a21bb10da618cab9b48ed44 (patch)
treeb8345c7e50ceb602e4fc11e10af118044721e5ac
parent5b1994cb42ad52a3a3cbf5461cbe6f8af2a69262 (diff)
downloadansible-modules-core-34863959703e8d920a21bb10da618cab9b48ed44.tar.gz
Remove script previously used by Travis.
-rwxr-xr-xtest-docs.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/test-docs.sh b/test-docs.sh
deleted file mode 100755
index 76297fba..00000000
--- a/test-docs.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-set -x
-
-CHECKOUT_DIR=".ansible-checkout"
-MOD_REPO="$1"
-
-# Hidden file to avoid the module_formatter recursing into the checkout
-git clone https://github.com/ansible/ansible "$CHECKOUT_DIR"
-cd "$CHECKOUT_DIR"
-git submodule update --init
-rm -rf "lib/ansible/modules/$MOD_REPO"
-ln -s "$TRAVIS_BUILD_DIR/" "lib/ansible/modules/$MOD_REPO"
-
-pip install -U Jinja2 PyYAML setuptools six pycrypto sphinx
-
-. ./hacking/env-setup
-PAGER=/bin/cat bin/ansible-doc -l
-if [ $? -ne 0 ] ; then
- exit $?
-fi
-make -C docsite