From 40257bdc89ec723363874421df6ca555f3457bf6 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 11 Mar 2021 09:38:37 +0100 Subject: [PATCH] update definitions for cliparser_todo docu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e42c0caa9..b2dcba430 100644 --- a/Makefile +++ b/Makefile @@ -251,7 +251,7 @@ print-%: ; @echo $* = $($*) cliparser: # Get list of all commands - cat doc/commands.md | grep -e ^\|\` | cut -f 2 -d "\`" | grep -v 'help\|list\|mem spiffs\|quit\|exit' | awk '{$$1=$$1};1' > cliparser_all_commands.tmp + cat doc/commands.md | grep -e ^\|\` | cut -f 2 -d "\`" | grep -v 'help\|list\|script run\|quit\|exit' | awk '{$$1=$$1};1' > cliparser_all_commands.tmp # Get list of cliparserized commands grep -r CLIParserInit ./client/src/ | cut -f 2 -d "\"" | awk '{$$1=$$1};1' > cliparser_done.tmp # Determine commands that still need cliparser conversion