diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/devtool/deploy.py | 4 |
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) |