mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
7 lines
136 B
Rust
7 lines
136 B
Rust
|
fn main() {
|
||
|
if let Ok(bundled) = std::env::var("ZED_BUNDLE") {
|
||
|
println!("cargo:rustc-env=ZED_BUNDLE={}", bundled);
|
||
|
}
|
||
|
}
|
||
|
|