You've already forked AstralRinth
forked from didirus/AstralRinth
Fix caching bug, and moderation webhook being sent at the wrong time (#215)
This commit is contained in:
3
build.rs
3
build.rs
@@ -12,8 +12,7 @@ fn main() {
|
||||
}
|
||||
|
||||
pub fn copy<U: AsRef<Path>, V: AsRef<Path>>(from: U, to: V) -> Result<(), std::io::Error> {
|
||||
let mut stack = Vec::new();
|
||||
stack.push(PathBuf::from(from.as_ref()));
|
||||
let mut stack = vec![PathBuf::from(from.as_ref())];
|
||||
|
||||
let output_root = PathBuf::from(to.as_ref());
|
||||
let input_root = PathBuf::from(from.as_ref()).components().count();
|
||||
|
||||
Reference in New Issue
Block a user