From 3a374ee834affb0b54db59eb628d8d743e8087e3 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Wed, 9 Jun 2021 13:54:14 -0500 Subject: [PATCH] tidying --- Makefile | 20 ++++++++++---------- tools/batools/build.py | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 2f085e4a..4111f118 100644 --- a/Makefile +++ b/Makefile @@ -632,43 +632,43 @@ check2-full: @tools/pcommand echo SGRN BLD ALL CHECKS PASSED! # Run Cpplint checks on all C/C++ code. -cpplint: prereqs +cpplint: prereqs meta @tools/pcommand cpplint # Run Cpplint checks without caching (all files are checked). -cpplint-full: prereqs +cpplint-full: prereqs meta @tools/pcommand cpplint -full # Run Pylint checks on all Python Code. -pylint: prereqs +pylint: prereqs meta @tools/pcommand pylint # Run Pylint checks without caching (all files are checked). -pylint-full: prereqs +pylint-full: prereqs meta @tools/pcommand pylint -full # Run Mypy checks on all Python code. -mypy: prereqs +mypy: prereqs meta @tools/pcommand mypy # Run Mypy checks without caching (all files are checked). -mypy-full: prereqs +mypy-full: prereqs meta @tools/pcommand mypy -full # Run Mypy checks on all Python code using daemon mode. -dmypy: prereqs +dmypy: prereqs meta @tools/pcommand dmypy # Stop the mypy daemon -dmypy-stop: prereqs +dmypy-stop: prereqs meta @tools/pcommand dmypy -stop # Run PyCharm checks on all Python code. -pycharm: prereqs +pycharm: prereqs meta @tools/pcommand pycharm # Run PyCharm checks without caching (all files are checked). -pycharm-full: prereqs +pycharm-full: prereqs meta @tools/pcommand pycharm -full # Tell make which of these targets don't represent files. diff --git a/tools/batools/build.py b/tools/batools/build.py index 60372dcf..d270c3bc 100644 --- a/tools/batools/build.py +++ b/tools/batools/build.py @@ -117,7 +117,7 @@ def _lazybuild_check_paths(inpaths: List[str], category: SourceCategory, continue for root, _dnames, fnames in os.walk(inpath): - # Only gen category uses generated src. + # Only the meta category uses meta src. if (root.startswith('src/meta') and category is not SourceCategory.META): continue