diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-01-28 12:45:38 +0100 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-01-28 12:45:38 +0100 |
| commit | bae42685b29f08370d46b1ed668a9a67343af1eb (patch) | |
| tree | 23a2a6b6f983a941697a54cf3cd1eca8c1e7af10 /distutils2/run.py | |
| parent | af3f25918cb436fa90cfce2fe354b74c4a20bfe5 (diff) | |
| parent | 33c96aed91c43f4c409187d4cf8f5d9c0701571e (diff) | |
| download | disutils2-bae42685b29f08370d46b1ed668a9a67343af1eb.tar.gz | |
merge tarek changes.
Diffstat (limited to 'distutils2/run.py')
| -rw-r--r-- | distutils2/run.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/distutils2/run.py b/distutils2/run.py index 7ed29cf..c7750c6 100644 --- a/distutils2/run.py +++ b/distutils2/run.py @@ -152,6 +152,10 @@ def main(): action="store", dest="install", help="Install a project.") + parser.add_option("-r", "--remove", + action="store", dest="remove", + help="Remove a project.") + options, args = parser.parse_args() if options.version: print('Distutils2 %s' % __version__) |
