added raw assets

This commit is contained in:
2024-12-06 21:09:02 -05:00
parent 2ad50f7ac8
commit 74450bdcd3
2 changed files with 5 additions and 1 deletions

View File

@@ -13,6 +13,10 @@ where
for path in fs::read_dir(from).unwrap() { for path in fs::read_dir(from).unwrap() {
let path = path.unwrap().path(); let path = path.unwrap().path();
println!("{path:?}");
if path.starts_with("assets/raw_assets") {
continue;
}
let to = to.clone().join(path.file_name().unwrap()); let to = to.clone().join(path.file_name().unwrap());
if path.is_file() { if path.is_file() {