2023-02-25 18:08:29 -06:00
|
|
|
error: single argument that looks like it should be multiple arguments
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/suspicious_command_arg_space.rs:3:44
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
|
LL | std::process::Command::new("echo").arg("-n hello").spawn().unwrap();
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::suspicious-command-arg-space` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::suspicious_command_arg_space)]`
|
2023-02-25 18:08:29 -06:00
|
|
|
help: consider splitting the argument
|
|
|
|
|
|
|
|
|
LL | std::process::Command::new("echo").args(["-n", "hello"]).spawn().unwrap();
|
|
|
|
| ~~~~ ~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: single argument that looks like it should be multiple arguments
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/suspicious_command_arg_space.rs:6:43
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
|
LL | std::process::Command::new("cat").arg("--number file").spawn().unwrap();
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider splitting the argument
|
|
|
|
|
|
|
|
|
LL | std::process::Command::new("cat").args(["--number", "file"]).spawn().unwrap();
|
|
|
|
| ~~~~ ~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|