From c8c2269ac0919a91768cf061fb808dae044fb3b1 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Tue, 26 Apr 2022 07:53:03 +0200 Subject: Makefile: exclude __pycache__ dir from vyos-configd enablement check --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit v1.2.3