X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=backend%2Fbuild.rs;fp=backend%2Fbuild.rs;h=012f651124d346adbdf851be3a6efdd677d1eaab;hb=419e5a1610b42d6d1945a30303754faf5e8ccdf6;hp=63a610596735ba2370f2bf1ed500a4ae509f2367;hpb=b0336a574d710ba48449d7330b332c18231df1c5;p=valheim_web.git diff --git a/backend/build.rs b/backend/build.rs index 63a6105..012f651 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 from SASS: {}", error); } }