From d1ef5f947ec11463cfb9b7ec96a9f588e03a895f Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 20 Sep 2016 11:42:15 -0700 Subject: [PATCH] Remove script previously used by Travis. --- lib/ansible/modules/test-docs.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 lib/ansible/modules/test-docs.sh diff --git a/lib/ansible/modules/test-docs.sh b/lib/ansible/modules/test-docs.sh deleted file mode 100755 index 76297fbada6..00000000000 --- a/lib/ansible/modules/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