From a15e0e199094ad4d5cc647362f9965a91850fbf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-Francis=20Ratt=C3=A9-Boulianne?= <lfrb@collabora.com> Date: Wed, 14 Dec 2016 16:03:54 -0500 Subject: [PATCH] Fix run command documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ARGS options are for the application getting started Signed-off-by: Louis-Francis Ratté-Boulianne <lfrb@collabora.com> Reviewed-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> Differential Revision: https://phabricator.apertis.org/D5297 --- tools/ade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ade b/tools/ade index e2e8258..3e5580a 100755 --- a/tools/ade +++ b/tools/ade @@ -1375,7 +1375,7 @@ if __name__ == '__main__': group = run_parser.add_mutually_exclusive_group() group.add_argument('--simulator', help="Use simulator as target", action='store_true') group.add_argument('--device', help="Use device as target (e.g. user@apertis)") - run_parser.add_argument('args', help="Configure options", nargs=argparse.REMAINDER) + run_parser.add_argument('args', help="Arguments to pass to application", nargs=argparse.REMAINDER) argcomplete.autocomplete(root_parser) -- GitLab