diff --git a/build.rs b/build.rs index 9a6568f..524401f 100644 --- a/build.rs +++ b/build.rs @@ -6,7 +6,7 @@ fn main() { let dest_path = Path::new(&out_dir).join("index.html"); let page = include_bytes!("./static/index.html"); let minified = minify_html::minify(page, &Cfg::spec_compliant()); - fs::write(dest_path, minified).expect("failed to save minified index page"); + fs::write(dest_path, minified).expect("failed to save minified index page"); println!("cargo:rerun-if-changed=static"); }