From b3919764c473c4ecb350072a91aabfdb4b681452 Mon Sep 17 00:00:00 2001 From: Robert Jelic Date: Sun, 9 Feb 2025 18:32:22 +0100 Subject: [PATCH] Test --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ed26a9a..5cabaf9 100644 --- a/Makefile +++ b/Makefile @@ -30,10 +30,10 @@ uninstall: test: test-basic test-example test-md test-tables -RUN=&& lua $(_REPODIR)/ldoc.lua . && diff -r doc cdocs && echo ok +RUN=&& lua $(_REPODIR)/ldoc.lua . && diff -r docs cdocs && echo ok test-prep: - find -type d -name doc -execdir rsync -av --del {}/ cdocs/ \; + find -type d -name docs -execdir rsync -av --del {}/ cdocs/ \; test-basic: cd tests $(RUN) @@ -50,9 +50,9 @@ test-tables: test-clean: clean-basic clean-example clean-md clean-tables doc-site: - cd $(_REPODIR)/doc && lua $(_REPODIR)/ldoc.lua . + cd $(_REPODIR)/docs && lua $(_REPODIR)/ldoc.lua . -CLEAN=&& lua $(_REPODIR)/ldoc.lua . && rd /S /Q cdocs && cp -rf doc cdocs +CLEAN=&& lua $(_REPODIR)/ldoc.lua . && rd /S /Q cdocs && cp -rf docs cdocs clean-basic: cd tests $(CLEAN)