Fix error message for Sass paths with invalid UTF-8

This commit is contained in:
Zoey 2021-08-19 13:46:19 -07:00
parent e432f906a1
commit ffb6b48157
No known key found for this signature in database
GPG key ID: 2DCAC8EA81672106

View file

@ -207,7 +207,10 @@ impl<'a> SiteBuilder<'a> {
), ),
} }
} else { } else {
eprintln!("Sass stylesheet contains invalid UTF-8: {:?}", sheet_path); eprintln!(
"Sass stylesheet path contains invalid UTF-8: {:?}",
sheet_path
);
} }
} }