From 152890c710747bada1a146de47af77c1b1ee1b5e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 22 Feb 2023 18:50:06 -0500 Subject: [PATCH] build: cog moved --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a3028b8bf..7f6959208 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ prebuild: css workflows cogdoc ## One command for all source prep. _sample_cog_html: clean python -m pip install -e . - cd ~/cog/trunk; \ + cd ~/cog; \ rm -rf htmlcov; \ PYTEST_ADDOPTS= coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; \ coverage combine; \ @@ -139,12 +139,12 @@ _sample_cog_html: clean sample_html: _sample_cog_html ## Generate sample HTML report. rm -f doc/sample_html/*.* - cp -r ~/cog/trunk/htmlcov/ doc/sample_html/ + cp -r ~/cog/htmlcov/ doc/sample_html/ rm doc/sample_html/.gitignore sample_html_beta: _sample_cog_html ## Generate sample HTML report for a beta release. rm -f doc/sample_html_beta/*.* - cp -r ~/cog/trunk/htmlcov/ doc/sample_html_beta/ + cp -r ~/cog/htmlcov/ doc/sample_html_beta/ rm doc/sample_html_beta/.gitignore