diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-19 00:15:57 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-19 00:15:57 +0100 |
| commit | 10736db63ad6d99e6cdce41920aa10dbeab02129 (patch) | |
| tree | 959230faa5c284e2393c30371702b56715afeaea | |
| parent | 729933dc15945c5c144747df1504647d1f6dd595 (diff) | |
| download | jellything-10736db63ad6d99e6cdce41920aa10dbeab02129.tar jellything-10736db63ad6d99e6cdce41920aa10dbeab02129.tar.bz2 jellything-10736db63ad6d99e6cdce41920aa10dbeab02129.tar.zst | |
a
| -rw-r--r-- | ui/client-style/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/client-style/build.rs b/ui/client-style/build.rs index 8cf1404..c5bdf78 100644 --- a/ui/client-style/build.rs +++ b/ui/client-style/build.rs @@ -11,7 +11,7 @@ use std::{ fn main() { println!("cargo:rerun-if-changed=build.rs"); let mut out = String::new(); - for file in glob::glob("src/**/*.ts").unwrap().map(Result::unwrap) { + for file in glob::glob("src/**/*.css").unwrap().map(Result::unwrap) { println!("cargo:rerun-if-changed={}", file.to_str().unwrap()); out += &read_to_string(file).unwrap(); } |