this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Windows...

Mar 99813c7e 93dd6d88

+1 -1
+1 -1
build.rs
··· 4 4 fn main() { 5 5 // The build script will be ran from the server directory, so we need to go up one directory to get to the root 6 6 let root_path = match std::env::var("CARGO_MANIFEST_DIR") { 7 - Ok(path) => (path + "/..").replace("/server/..", "/"), 7 + Ok(path) => (path + "/..").replace("\\", "/").replace("/server/..", "/"), 8 8 Err(_) => panic!("Failed to get root path"), 9 9 }; 10 10 // Tell cargo to rerun the build script if the client directory changes