summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.microsoft.com>2020-06-14 19:27:55 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-23 12:31:02 +0100
commitbdc4adcc0d5f365f32635bce2a5670f14d8b19d9 (patch)
treeb1984f12c1c32e2833b7bf3f311130dea6999907 /scripts
parent6f5a85b1a03f99513c05a5667dac008db6810c8f (diff)
downloadpoky-bdc4adcc0d5f365f32635bce2a5670f14d8b19d9.tar.gz
devtool: fix typo
specifiy -> specify (From OE-Core rev: 194555aae3f1f10468c1800c93bd17c54ce217c8) Signed-off-by: Paul Eggleton <paul.eggleton@linux.microsoft.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/devtool/deploy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/deploy.py b/scripts/lib/devtool/deploy.py
index 6a997735fc..b1749ce672 100644
--- a/scripts/lib/devtool/deploy.py
+++ b/scripts/lib/devtool/deploy.py
@@ -330,7 +330,7 @@ def register_commands(subparsers, context):
330 parser_deploy.add_argument('-e', '--ssh-exec', help='Executable to use in place of ssh') 330 parser_deploy.add_argument('-e', '--ssh-exec', help='Executable to use in place of ssh')
331 parser_deploy.add_argument('-P', '--port', help='Specify port to use for connection to the target') 331 parser_deploy.add_argument('-P', '--port', help='Specify port to use for connection to the target')
332 parser_deploy.add_argument('-I', '--key', 332 parser_deploy.add_argument('-I', '--key',
333 help='Specifiy ssh private key for connection to the target') 333 help='Specify ssh private key for connection to the target')
334 334
335 strip_opts = parser_deploy.add_mutually_exclusive_group(required=False) 335 strip_opts = parser_deploy.add_mutually_exclusive_group(required=False)
336 strip_opts.add_argument('-S', '--strip', 336 strip_opts.add_argument('-S', '--strip',
@@ -355,6 +355,6 @@ def register_commands(subparsers, context):
355 parser_undeploy.add_argument('-e', '--ssh-exec', help='Executable to use in place of ssh') 355 parser_undeploy.add_argument('-e', '--ssh-exec', help='Executable to use in place of ssh')
356 parser_undeploy.add_argument('-P', '--port', help='Specify port to use for connection to the target') 356 parser_undeploy.add_argument('-P', '--port', help='Specify port to use for connection to the target')
357 parser_undeploy.add_argument('-I', '--key', 357 parser_undeploy.add_argument('-I', '--key',
358 help='Specifiy ssh private key for connection to the target') 358 help='Specify ssh private key for connection to the target')
359 359
360 parser_undeploy.set_defaults(func=undeploy) 360 parser_undeploy.set_defaults(func=undeploy)