Browse Source

setup.py: handle .jj

raylu 4 tháng trước cách đây
mục cha
commit
cda5b2008e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -29,7 +29,7 @@ def link_file(target, name):
 				raise
 
 for f in os.listdir('.'):
-	if f in [script, '.git', '.gitignore']:
+	if f.startswith('.') or f == script:
 		continue
 
 	name = '../.' + f