Morpheus / Mbed OS mbed-Client-Morpheus-hg

Dependencies:   mbed-os

Files at this revision

API Documentation at this revision

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')