You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mbed/mbed.py
+29-29Lines changed: 29 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -949,7 +949,7 @@ def thunk(parsed_args):
949
949
dict(name='--depth', nargs='?', help='Number of revisions to fetch the mbed-os repository when creating new program. Default: all revisions.'),
950
950
dict(name='--protocol', nargs='?', help='Transport protocol when fetching the mbed-os repository when creating new program. Supported: https, http, ssh, git. Default: inferred from URL.'),
951
951
help='Create a new program based on the specified source control management. Will create a new library when called from inside a local program. Supported SCMs: %s.'% (', '.join([s.nameforsinscms.values()])))
dict(name='--depth', nargs='?', help='Number of revisions to fetch from the remote repository. Default: all revisions.'),
1043
1043
dict(name='--protocol', nargs='?', help='Transport protocol for the source control management. Supported: https, http, ssh, git. Default: inferred from URL.'),
1044
-
help="Import missing dependencies in the current program or library.")
1044
+
help='Import missing dependencies in the current program or library.')
dict(name='path', nargs='?', help="Destination name or path. Default: current folder."),
1061
+
dict(name='url', help='URL of the library'),
1062
+
dict(name='path', nargs='?', help='Destination name or path. Default: current folder.'),
1063
1063
dict(name='--depth', nargs='?', help='Number of revisions to fetch from the remote repository. Default: all revisions.'),
1064
1064
dict(name='--protocol', nargs='?', help='Transport protocol for the source control management. Supported: https, http, ssh, git. Default: inferred from URL.'),
1065
1065
help='Add a library and its dependencies into the current %s or specified destination path.'%cwd_type)
dict(name='rev', nargs='?', help="Revision hash, tag or branch"),
1133
-
dict(name=['-C', '--clean'], action="store_true", help="Perform a clean update and discard all local changes. WARNING: This action cannot be undone. Use with caution."),
1134
-
dict(name=['-F', '--force'], action="store_true", help="Enforce the original layout and will remove any local libraries and also libraries containing uncommitted or unpublished changes. WARNING: This action cannot be undone. Use with caution."),
1135
-
dict(name=['-I', '--ignore'], action="store_true", help="Ignore errors regarding unpiblished libraries, unpublished or uncommitted changes, and attempt to update from associated remote repository URLs."),
1132
+
dict(name='rev', nargs='?', help='Revision hash, tag or branch'),
1133
+
dict(name=['-C', '--clean'], action='store_true', help='Perform a clean update and discard all local changes. WARNING: This action cannot be undone. Use with caution.'),
1134
+
dict(name=['-F', '--force'], action='store_true', help='Enforce the original layout and will remove any local libraries and also libraries containing uncommitted or unpublished changes. WARNING: This action cannot be undone. Use with caution.'),
1135
+
dict(name=['-I', '--ignore'], action='store_true', help='Ignore errors regarding unpublished libraries, unpublished or uncommitted changes, and attempt to update from associated remote repository URLs.'),
1136
1136
dict(name='--depth', nargs='?', help='Number of revisions to fetch from the remote repository. Default: all revisions.'),
1137
1137
dict(name='--protocol', nargs='?', help='Transport protocol for the source control management. Supported: https, http, ssh, git. Default: inferred from URL.'),
1138
1138
help='Update current %s and its dependencies from associated remote repository URLs.'%cwd_type)
dict(name='--library', dest='compile_library', action='store_true', help='Compile the current %s as a static library.'%cwd_type),
1304
+
dict(name='--tests', dest='compile_tests', action='store_true', help='Compile tests in TESTS directory.'),
1305
1305
dict(name='--test_spec', dest="test_spec", help="Destination path for a test spec file that can be used by the Greentea automated test tool. (Default is 'test_spec.json')"),
1306
1306
help='Compile program using the native mbed OS build system.')
0 commit comments