a few more cli aliases

This commit is contained in:
Mike McLean 2013-03-08 15:32:15 -05:00
parent a27c3d0dc5
commit d18d03174f

View file

@ -158,9 +158,12 @@ def get_options():
'cxl' : 'cancel',
'list-commands' : 'help',
'move-pkg': 'move-build',
'move': 'move-build',
'latest-pkg': 'latest-build',
'tag-pkg': 'tag-build',
'untag-pkg': 'untag-build'
'tag': 'tag-build',
'untag-pkg': 'untag-build',
'untag': 'untag-build',
}
cmd = args[0]
cmd = aliases.get(cmd, cmd)