mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
13 lines
400 B
Python
13 lines
400 B
Python
from pythonbrew.basecommand import Command
|
|
from pythonbrew.log import logger
|
|
|
|
class CleanCommand(Command):
|
|
name = "clean"
|
|
usage = "%prog"
|
|
summary = "Remove stale source folders and archives"
|
|
|
|
def run_command(self, options, args):
|
|
logger.info('\nDEPRECATION WARNING: `pythonbrew clean` has been renamed. Please run `pythonbrew cleanup` instead.\n')
|
|
|
|
CleanCommand()
|