File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ def build(ctx: PulpDocsContext):
9999 pulpdocs = ctx .pulp_docs
100100
101101 config .verbose = True
102+ config .disabled = ""
102103
103104 dry_run = True if config .test_mode else False
104105 pulpdocs .build (config , dry_run = dry_run )
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ plugins:
4242 - search
4343 - site-urls
4444 - blog :
45- blog_dir : pulp-docs/docs/sections/ blog
45+ blog_dir : blog
4646 blog_toc : false
4747 - macros :
4848 module_name : ' ../mkdocs_macros'
Original file line number Diff line number Diff line change @@ -125,11 +125,11 @@ def download(
125125 log .info (f"{ log_header } : source={ download_from } , copied_from={ src_copy_path } " )
126126
127127 # ignore files lisetd in .gitignore and files that starts with "."
128+ # shutil ignore limitation: https://github.com/Miserlou/Zappa/issues/692#issuecomment-283012663
128129 ignore_patterns = get_git_ignored_files (Path (src_copy_path )) + [".*" ]
129130
130131 # skip blog for faster reloads
131132 if self .name == "pulp-docs" and "blog" in disabled :
132- # limitation: https://github.com/Miserlou/Zappa/issues/692#issuecomment-283012663
133133 ignore_patterns .append ("*posts" )
134134
135135 shutil .copytree (
You can’t perform that action at this time.
0 commit comments