X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=backend%2Fbuild.rs;fp=backend%2Fbuild.rs;h=be604657b37e6ad0ef440fd0ccfed35653baf12d;hb=aa59a1f9b79009079a5a1fbafd4f65d3130e9ee2;hp=63a610596735ba2370f2bf1ed500a4ae509f2367;hpb=83993038d45c0d11c11417f9b47e19eb61e53928;p=valheim_web.git diff --git a/backend/build.rs b/backend/build.rs index 63a6105..be60465 100644 --- a/backend/build.rs +++ b/backend/build.rs @@ -41,6 +41,6 @@ fn main() { if !output.status.success() { // SASS will put the error in the file. let error = std::fs::read_to_string("./static/style.css").expect("unable to read style.css"); - panic!(error); + panic!("{}", error); } }