Don't ignore any directories after all
This commit is contained in:
parent
528737be80
commit
39f711d813
1 changed files with 24 additions and 27 deletions
|
@ -5,14 +5,11 @@ from django.core.management.base import BaseCommand, CommandError
|
||||||
|
|
||||||
from settings import MARKDOWN_PATH, DEPLOY_PATH
|
from settings import MARKDOWN_PATH, DEPLOY_PATH
|
||||||
|
|
||||||
ignore_dir = '.git'
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
help = 'Parse markdown files in %s' % MARKDOWN_PATH
|
help = 'Parse markdown files in %s' % MARKDOWN_PATH
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
def handle(self, *args, **options):
|
||||||
for root, dirs, files in os.walk(MARKDOWN_PATH):
|
for root, dirs, files in os.walk(MARKDOWN_PATH):
|
||||||
if ignore_dir not in root:
|
|
||||||
for file in files:
|
for file in files:
|
||||||
subdir = root.replace(MARKDOWN_PATH, "")
|
subdir = root.replace(MARKDOWN_PATH, "")
|
||||||
mdfile = '%s/%s' % (root, file)
|
mdfile = '%s/%s' % (root, file)
|
||||||
|
|
Loading…
Reference in a new issue