Changeset 218

Show
Ignore:
Timestamp:
07/27/07 14:02:27 (1 year ago)
Author:
johnbywater
Message:

Improved removal of *.pyc files.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bin/domainmodel-sdist-maker

    r193 r218  
    11#!/usr/bin/env python 
    22import os 
    3 os.system("rm -fv `find . | grep \.pyc$`") 
     3os.system("rm -fv `find . -name '*.pyc'`") 
    44os.system("rm -fv MANIFEST") 
    55os.system("python setup.py sdist")