mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 12:32:12 +02:00
bitbake-bblayers/create: Fix incorrect priority help message
The help message for the optional argument of setting the priority of the new layer was incorrect. (From OE-Core rev: d10d928c6030951994bc2404cde78137c86917a4) Signed-off-by: Charlie Davies <charles.davies@whitetree.xyz> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
78df4ab73e
commit
b7d1f361ff
@@ -71,7 +71,7 @@ class CreatePlugin(LayerPlugin):
|
||||
def register_commands(self, sp):
|
||||
parser_create_layer = self.add_command(sp, 'create-layer', self.do_create_layer, parserecipes=False)
|
||||
parser_create_layer.add_argument('layerdir', help='Layer directory to create')
|
||||
parser_create_layer.add_argument('--priority', '-p', default=6, help='Layer directory to create')
|
||||
parser_create_layer.add_argument('--priority', '-p', default=6, help='Priority of recipes in layer')
|
||||
parser_create_layer.add_argument('--example-recipe-name', '-e', dest='examplerecipe', default='example', help='Filename of the example recipe')
|
||||
parser_create_layer.add_argument('--example-recipe-version', '-v', dest='version', default='0.1', help='Version number for the example recipe')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user