update @ Sun 17 Apr 17:18:56 EEST 2022

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-04-17 17:18:56 +03:00
parent 0b1e7dd55e
commit 08195a64f0
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2

View file

@ -269,6 +269,8 @@ def build(config: Dict) -> Tuple[int, Dict]:
sys.stdout.close()
sys.stdout = saved_stdout
log("Done minifying CSS", "MINIFY")
Thread(target=build_css, daemon=True).start()
log("Building blogs...", "INFO")
@ -313,6 +315,7 @@ def build(config: Dict) -> Tuple[int, Dict]:
if blog_meta["minimise"]:
log(f"Minifying {blog_name!r} HTML", "MINIFY")
blog_html_full = html_minify(blog_html_full)
log(f"Done minifying HTML of {blog_name!r}", "MINIFY")
blog_html.write(blog_html_full)