$reldocpath, ]; $environment = serialize_shell_environment($env_vars); exec("cd '$TEMPLATES_ROOT'; $environment php '$phppath' $flags", $output, $exit_code); if ($exit_code != 0 || empty($output)) { log_error("Site generation failed."); exit(255); } if (str_ends_with($docpath, ".html")) { $output = preg_replace("/^\\s+/", "", $output); } file_put_contents($docpath, join("\n", $output)); } log_info("Done generating site."); } generate_files(); ?>