diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-26 07:53:03 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-26 07:53:03 +0200 |
commit | c8c2269ac0919a91768cf061fb808dae044fb3b1 (patch) | |
tree | b8e98abb68ef15a0231410221f89ab821d160732 | |
parent | f43615435fb84cf68977eb233863f0a5916e749d (diff) | |
download | vyos-1x-c8c2269ac0919a91768cf061fb808dae044fb3b1.tar.gz vyos-1x-c8c2269ac0919a91768cf061fb808dae044fb3b1.zip |
Makefile: exclude __pycache__ dir from vyos-configd enablement check
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |