Skip to content

Commit

Permalink
warning on non config .cpp files
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Feb 19, 2024
1 parent b822c44 commit 78e0f2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions bin/src/modules/asc.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use std::{
fs::{create_dir_all, File},
io::{BufReader, Read, Write},
os::windows::fs::MetadataExt,
io::{Read, Write},
process::Command,
sync::{
atomic::{AtomicU16, Ordering},
Expand Down
4 changes: 3 additions & 1 deletion bin/src/modules/rapifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,12 @@ pub fn rapify(addon: &Addon, path: &WorkspacePath, ctx: &Context) -> Result<Repo
.build_data()
.set_required_version(version, file.to_owned(), span);
}
path.parent().with_extension("bin")?
println!("using .bin");
path.with_extension("bin")?
} else {
path.to_owned()
};
println!("out: {:?}", out.as_str());
if processed.no_rapify() {
debug!(
"skipping rapify for {}, as instructed by preprocessor",
Expand Down

0 comments on commit 78e0f2f

Please sign in to comment.