From a3c1c5b9c3647d7801c7ea604fb9a259efe8a6a0 Mon Sep 17 00:00:00 2001 From: Kevin Putnam Date: Fri, 28 Dec 2018 10:02:54 -0800 Subject: [PATCH] moved linkcheck helper script to sub-directory --- source/Makefile | 2 +- source/scripts/_python/{ => linkcheck}/link-whitelist.txt | 0 source/scripts/_python/{ => linkcheck}/parse-link-check.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename source/scripts/_python/{ => linkcheck}/link-whitelist.txt (100%) rename source/scripts/_python/{ => linkcheck}/parse-link-check.py (100%) diff --git a/source/Makefile b/source/Makefile index 47c4ff1a..6ef592c3 100644 --- a/source/Makefile +++ b/source/Makefile @@ -167,7 +167,7 @@ changes: linkcheck: -$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - python3 scripts/_python/parse-link-check.py $(BUILDDIR)/linkcheck + python3 scripts/_python/linkcheck/parse-link-check.py $(BUILDDIR)/linkcheck doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest diff --git a/source/scripts/_python/link-whitelist.txt b/source/scripts/_python/linkcheck/link-whitelist.txt similarity index 100% rename from source/scripts/_python/link-whitelist.txt rename to source/scripts/_python/linkcheck/link-whitelist.txt diff --git a/source/scripts/_python/parse-link-check.py b/source/scripts/_python/linkcheck/parse-link-check.py similarity index 100% rename from source/scripts/_python/parse-link-check.py rename to source/scripts/_python/linkcheck/parse-link-check.py