summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-04-26 07:53:03 +0200
committerChristian Poessinger <christian@poessinger.com>2022-04-26 07:53:03 +0200
commitc8c2269ac0919a91768cf061fb808dae044fb3b1 (patch)
treeb8e98abb68ef15a0231410221f89ab821d160732
parentf43615435fb84cf68977eb233863f0a5916e749d (diff)
downloadvyos-1x-c8c2269ac0919a91768cf061fb808dae044fb3b1.tar.gz
vyos-1x-c8c2269ac0919a91768cf061fb808dae044fb3b1.zip
Makefile: exclude __pycache__ dir from vyos-configd enablement check
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ca68214ac..3e838540c 100644
--- a/Makefile
+++ b/Makefile
@@ -83,7 +83,7 @@ all: clean interface_definitions op_mode_definitions check test j2lint vyshim
.ONESHELL:
check:
@echo "Checking which CLI scripts are not enabled to work with vyos-configd..."
- @for file in `ls src/conf_mode`
+ @for file in `ls src/conf_mode -I__pycache__`
do
if ! grep -q $$file data/configd-include.json; then
echo "* $$file"