Matej Focko
0341881984
Add wrapper for running clippy on each file separately, since ‹clippy-driver› accepts only one file at a time. Signed-off-by: Matej Focko <mfocko@redhat.com>
5 lines
69 B
Bash
Executable file
5 lines
69 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for src_file in "$@"; do
|
|
clippy-driver $src_file
|
|
done
|