update @ Wed 6 Apr 20:51:31 EEST 2022

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-04-06 20:51:31 +03:00
parent 11fd266bf3
commit 2a401cad35
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

@ -582,7 +582,11 @@ def generate_static_full(config: Dict) -> Tuple[int, Dict]:
for logger_msg, function in BUILD_CFG.items():
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