summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/suspicious_command_arg_space.stderr
blob: 9bc0ca93aec9ec0b6e28a3c180e704a1a81ed78e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error: single argument that looks like it should be multiple arguments
  --> $DIR/suspicious_command_arg_space.rs:3:44
   |
LL |     std::process::Command::new("echo").arg("-n hello").spawn().unwrap();
   |                                            ^^^^^^^^^^
   |
   = note: `-D clippy::suspicious-command-arg-space` implied by `-D warnings`
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
  --> $DIR/suspicious_command_arg_space.rs:4:43
   |
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