Skip to content
This repository has been archived by the owner on Feb 25, 2018. It is now read-only.

Commit

Permalink
unlink MANIFEST file every time - it tends to screw up my builds
Browse files Browse the repository at this point in the history
  • Loading branch information
rfk committed Aug 2, 2010
1 parent 2e6ba96 commit e2d949e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ def next(i):
pass


# Screw the MANIFEST file, it just caches out of date data and messes
# up my builds.
mfst = os.path.join(os.path.dirname(__file__),"MANIFEST")
if os.path.exists(mfst):
os.unlink(mfst)


NAME = "signedimp"
VERSION = info["__version__"]
DESCRIPTION = "signed imports for verified loading of python modules"
Expand Down

0 comments on commit e2d949e

Please sign in to comment.