Skip to content

Commit 6bc8c3d

Browse files
committed
Fix bad upper casing in ndk-env
1 parent 5ee8381 commit 6bc8c3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pub fn run(args: Vec<String>) -> anyhow::Result<()> {
8686
println!("# cargo ndk-env --powershell | Invoke-Expression");
8787
} else {
8888
for (k, v) in env {
89-
println!("export {}={:?}", k.to_uppercase().replace('-', "_"), v);
89+
println!("export {}={:?}", k.replace('-', "_"), v);
9090
}
9191
println!();
9292
println!("# To import with bash/zsh/etc:");

0 commit comments

Comments
 (0)