Skip to content

Commit

Permalink
Modified setup script to ignore git directory :)
Browse files Browse the repository at this point in the history
  • Loading branch information
dansanduleac committed May 25, 2011
1 parent d0ea7c2 commit 3982ae6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.pyc
*~
build/
MANIFEST
2 changes: 1 addition & 1 deletion build_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]

FORBIDDEN_DIRECTORIES = [
lambda d: d.lower() in ('.svn', 'cvs', 'build', 'dist'),
lambda d: d.lower() in ('.svn', '.git', '.hg', 'cvs', 'build', 'dist'),
lambda d: d.startswith('__'),
]

Expand Down

0 comments on commit 3982ae6

Please sign in to comment.