summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/search.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool/search.py')
-rw-r--r--scripts/lib/devtool/search.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/devtool/search.py b/scripts/lib/devtool/search.py
index 2ea446237e..b44bed7f6f 100644
--- a/scripts/lib/devtool/search.py
+++ b/scripts/lib/devtool/search.py
@@ -82,6 +82,7 @@ def search(args, config, basepath, workspace):
82def register_commands(subparsers, context): 82def register_commands(subparsers, context):
83 """Register devtool subcommands from this plugin""" 83 """Register devtool subcommands from this plugin"""
84 parser_search = subparsers.add_parser('search', help='Search available recipes', 84 parser_search = subparsers.add_parser('search', help='Search available recipes',
85 description='Searches for available target recipes. Matches on recipe name, package name, description and installed files, and prints the recipe name on match.') 85 description='Searches for available target recipes. Matches on recipe name, package name, description and installed files, and prints the recipe name on match.',
86 group='info')
86 parser_search.add_argument('keyword', help='Keyword to search for (regular expression syntax allowed)') 87 parser_search.add_argument('keyword', help='Keyword to search for (regular expression syntax allowed)')
87 parser_search.set_defaults(func=search, no_workspace=True) 88 parser_search.set_defaults(func=search, no_workspace=True)