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
+12-10Lines changed: 12 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -848,12 +848,12 @@ def get_tools_dir(self):
848
848
defpost_clone(self):
849
849
mbed_os_path=self.get_os_dir()
850
850
ifnotmbed_os_path:
851
-
warning("Cannot find the mbed-os directory in \"%s\""%self.path)
851
+
warning("Cannot find the mbed OS directory in \"%s\""%self.path)
852
852
returnFalse
853
853
854
854
mbed_tools_path=self.get_tools_dir()
855
855
ifnotmbed_tools_path:
856
-
warning("Cannot find the mbed-os tools directory in \"%s\""%mbed_os_path)
856
+
warning("Cannot find the mbed OS tools directory in \"%s\""%mbed_os_path)
857
857
returnFalse
858
858
859
859
if (notos.path.isfile(os.path.join(self.path, 'mbed_settings.py')) and
@@ -953,8 +953,8 @@ def thunk(parsed_args):
953
953
@subcommand('new',
954
954
dict(name='name', help='Destination name or path'),
955
955
dict(name='scm', nargs='?', help='Source control management. Currently supported: %s. Default: git'%', '.join([s.nameforsinscms.values()])),
956
-
dict(name='--depth', nargs='?', help='Number of revisions to fetch the mbed-os repository when creating new program. Default: all revisions.'),
957
-
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.'),
956
+
dict(name='--depth', nargs='?', help='Number of revisions to fetch the mbed OS repository when creating new program. Default: all revisions.'),
957
+
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.'),
958
958
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()])))
0 commit comments