We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfcf1d0 commit 73a0844Copy full SHA for 73a0844
src/uu/env/src/env.rs
@@ -628,6 +628,9 @@ impl EnvAppData {
628
argv.push(arg_cstring);
629
}
630
631
+ // FIXME: libc::execvp() can be replaced with Command::exec() once https://github.com/rust-lang/rust/issues/97889#issuecomment-2007391597
632
+ // is merged into rust stable.
633
+
634
// Execute the program using execvp. this replaces the current
635
// process. The execvp function takes care of appending a NULL
636
// argument to the argument list so that we don't have to.
0 commit comments