Fixed #30 -- django-admin startproject and startapp now ignore directories starting with a dot
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
3c0ee70e7c
commit
2fb6c3b845
|
@ -314,6 +314,9 @@ def _start_helper(app_or_project, name, directory, other_name=''):
|
||||||
relative_dir = d[len(template_dir)+1:].replace('%s_name' % app_or_project, name)
|
relative_dir = d[len(template_dir)+1:].replace('%s_name' % app_or_project, name)
|
||||||
if relative_dir:
|
if relative_dir:
|
||||||
os.mkdir(os.path.join(top_dir, relative_dir))
|
os.mkdir(os.path.join(top_dir, relative_dir))
|
||||||
|
for i, subdir in enumerate(subdirs):
|
||||||
|
if subdir.startswith('.'):
|
||||||
|
del subdirs[i]
|
||||||
for f in files:
|
for f in files:
|
||||||
fp_old = open(os.path.join(d, f), 'r')
|
fp_old = open(os.path.join(d, f), 'r')
|
||||||
fp_new = open(os.path.join(top_dir, relative_dir, f.replace('%s_name' % app_or_project, name)), 'w')
|
fp_new = open(os.path.join(top_dir, relative_dir, f.replace('%s_name' % app_or_project, name)), 'w')
|
||||||
|
|
Loading…
Reference in New Issue