We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ee8381 commit 6bc8c3dCopy full SHA for 6bc8c3d
1 file changed
src/cli/env.rs
@@ -86,7 +86,7 @@ pub fn run(args: Vec<String>) -> anyhow::Result<()> {
86
println!("# cargo ndk-env --powershell | Invoke-Expression");
87
} else {
88
for (k, v) in env {
89
- println!("export {}={:?}", k.to_uppercase().replace('-', "_"), v);
+ println!("export {}={:?}", k.replace('-', "_"), v);
90
}
91
println!();
92
println!("# To import with bash/zsh/etc:");
0 commit comments