Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-os
Revision 5:37ac884d9477, committed 2016-03-29
- Comitter:
- Christopher Haster
- Date:
- Tue Mar 29 23:03:50 2016 -0500
- Parent:
- 4:6e987db7a950
- Child:
- 6:622a477ef55c
- Commit message:
- Added deploy command
Changed in this revision
| neo.py | Show annotated file Show diff for this revision Revisions of this file |
--- a/neo.py Wed Mar 30 20:34:40 2016 +0000
+++ b/neo.py Tue Mar 29 23:03:50 2016 -0500
@@ -151,6 +151,13 @@
for lib in iterlibs():
import_(lib)
+# Deploy command
+@subcommand('deploy',
+ help='recursively import libraries in current directory')
+def deploy():
+ for lib in iterlibs():
+ import_(lib)
+
# Install/uninstall command
@subcommand('add', 'url',
help='add a library to the current repository')