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
Diff: neo.py
- Revision:
- 5:37ac884d9477
- Parent:
- 4:6e987db7a950
- Child:
- 6:622a477ef55c
diff -r 6e987db7a950 -r 37ac884d9477 neo.py --- 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')