mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01:00
7 lines
206 B
Rust
7 lines
206 B
Rust
fn main() -> shadow_rs::SdResult<()> {
|
|
let src_path = std::env::var("CARGO_MANIFEST_DIR")?;
|
|
let out_path = std::env::var("OUT_DIR")?;
|
|
shadow_rs::Shadow::build(src_path, out_path)?;
|
|
Ok(())
|
|
}
|