Drop the useless clean command.
This commit is contained in:
parent
e7a32c97c9
commit
9eaa51edbb
@ -108,11 +108,6 @@ def _extract_bundle(source_file, dest_dir):
|
||||
outfile.flush()
|
||||
outfile.close()
|
||||
|
||||
def _delete_backups(arg, dirname, names):
|
||||
for name in names:
|
||||
if name.endswith('~') or name.endswith('pyc'):
|
||||
os.remove(os.path.join(dirname, name))
|
||||
|
||||
def cmd_help(config, options, args):
|
||||
print 'Usage: \n\
|
||||
setup.py dev - setup for development \n\
|
||||
@ -121,7 +116,6 @@ setup.py install [dirname] - install the bundle \n\
|
||||
setup.py uninstall [dirname] - uninstall the bundle \n\
|
||||
setup.py genpot - generate the gettext pot file \n\
|
||||
setup.py genl10n - generate localization files \n\
|
||||
setup.py clean - clean the directory \n\
|
||||
setup.py release - do a new release of the bundle \n\
|
||||
setup.py help - print this message \n\
|
||||
'
|
||||
@ -337,9 +331,6 @@ def cmd_release(config, options, args):
|
||||
|
||||
print 'Done.'
|
||||
|
||||
def cmd_clean(config, options, args):
|
||||
os.path.walk('.', _delete_backups, None)
|
||||
|
||||
def start(bundle_name, manifest='MANIFEST'):
|
||||
parser = OptionParser()
|
||||
(options, args) = parser.parse_args()
|
||||
|
Loading…
Reference in New Issue
Block a user