Skip to content

Commit bc5f6ed

Browse files
committed
Print TECTONIC_BUNDLE_.. envs when building
1 parent 9c0ffb3 commit bc5f6ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/bundles/build.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ fn bundle_presets() {
2727
};
2828

2929
// export to rustc
30-
println!("cargo:rustc-env={LOCKED_VAR_NAME}={bundle_locked}");
31-
println!("cargo:rustc-env={PREFIX_VAR_NAME}={bundle_prefix}");
30+
println!("cargo::rustc-env={LOCKED_VAR_NAME}={bundle_locked}");
31+
println!("cargo::rustc-env={PREFIX_VAR_NAME}={bundle_prefix}");
32+
println!("cargo::warning=setting\n {LOCKED_VAR_NAME}={bundle_locked}\n {PREFIX_VAR_NAME}={bundle_prefix}");
3233
}
3334

3435
fn main() {

0 commit comments

Comments
 (0)