mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 17:49:24 +01:00
update @ Wed 6 Apr 20:51:31 EEST 2022
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
parent
11fd266bf3
commit
2a401cad35
1 changed files with 5 additions and 1 deletions
|
@ -582,7 +582,11 @@ def generate_static_full(config: Dict) -> Tuple[int, Dict]:
|
||||||
|
|
||||||
for logger_msg, function in BUILD_CFG.items():
|
for logger_msg, function in BUILD_CFG.items():
|
||||||
log(f"{logger_msg}...", "STATIC")
|
log(f"{logger_msg}...", "STATIC")
|
||||||
_, config = function(config)
|
code, config = function(config)
|
||||||
|
|
||||||
|
if code != EXIT_OK:
|
||||||
|
log("Failed to generate static site")
|
||||||
|
return EXIT_ERR, config
|
||||||
|
|
||||||
return EXIT_OK, config
|
return EXIT_OK, config
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue