Update release help msg and rearrange the option for look
authorGui Chen <gui.chen@intel.com>
Fri, 23 Sep 2011 08:59:15 +0000 (16:59 +0800)
committerGui Chen <gui.chen@intel.com>
Fri, 23 Sep 2011 08:59:15 +0000 (16:59 +0800)
Signed-off-by: Gui Chen <gui.chen@intel.com>
mic/creator.py

index 0e672aee74f09655c76b1efc735ca1cab85eecf4..2b2ff66c2ac52b35351fe144779203424ec087c1 100644 (file)
@@ -58,13 +58,13 @@ class Creator(cmdln.Cmdln):
         optparser = cmdln.CmdlnOptionParser(self)
         optparser.add_option('-d', '--debug', action='store_true', dest='debug', help=SUPPRESS_HELP)
         optparser.add_option('-v', '--verbose', action='store_true', dest='verbose', help=SUPPRESS_HELP)
-        optparser.add_option('-o', '--outdir', type='string', action='store', dest='outdir', default=None, help='Output directory')
-        optparser.add_option('', '--local-pkgs-path', type='string', dest='local_pkgs_path', default=None, help='Path for local pkgs(rpms) to be installed')
         optparser.add_option('', '--logfile', type='string', dest='logfile', default=None, help='Path of logfile')
-        optparser.add_option('', '--release', type='string', dest='release', default=None, help='Generate release package')
-        optparser.add_option('-A', '--arch', type='string', dest='arch', default=None, help='Specify repo architecture')
         optparser.add_option('-c', '--config', type='string', dest='config', default=None, help='Specify config file for mic')
+        optparser.add_option('-o', '--outdir', type='string', action='store', dest='outdir', default=None, help='Output directory')
+        optparser.add_option('-A', '--arch', type='string', dest='arch', default=None, help='Specify repo architecture')
+        optparser.add_option('', '--release', type='string', dest='release', default=None, metavar='RID', help='Generate a release of RID with all neccessary files ')
         optparser.add_option('', '--pkgmgr', type='string', dest='pkgmgr', default=None, help='Specify backend package manager')
+        optparser.add_option('', '--local-pkgs-path', type='string', dest='local_pkgs_path', default=None, help='Path for local pkgs(rpms) to be installed')
         return optparser
 
     def preoptparse(self, argv):