mirror of
https://github.com/nushell/nushell
synced 2024-12-28 05:53:09 +00:00
6 lines
206 B
Rust
6 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(())
|
|
}
|