aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/build.rs b/build.rs
index c759316..78b4975 100644
--- a/build.rs
+++ b/build.rs
@@ -7,7 +7,12 @@ fn main() {
let dest_path = Path::new(&out_dir).join("style.css");
fs::write(
&dest_path,
- grass::from_string(include_str!("data/style.scss").to_string(), &grass::Options::default()).unwrap()
- ).unwrap();
+ grass::from_string(
+ include_str!("data/style.scss").to_string(),
+ &grass::Options::default(),
+ )
+ .unwrap(),
+ )
+ .unwrap();
println!("cargo:rerun-if-changed=data/style.css");
}