From 6ead96a44aa271061459570c9c52202d1bedbf24 Mon Sep 17 00:00:00 2001 From: doty Date: Wed, 1 Nov 2017 10:03:50 -0700 Subject: [PATCH] Don't symlink .git --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 12ba992..9ac865d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/local/bin/python3 import os -ignore = {'setup.cmd', 'setup.py', 'setup.ps1', 'readme.md'} +ignore = {'setup.cmd', 'setup.py', 'setup.ps1', 'readme.md', '.git'} home = os.path.expanduser('~') source_files = [file for file in os.listdir(os.getcwd()) if file not in ignore]