mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 12:57:50 +00:00
1eaf996a36
On Windows when running commands with their name instead of the path with Command::new, executable with that name from the current working directory will be executed. This PR replaces all instances of Command::new with a new create_command function which will first resolve any executable paths and avoid this issue.
3 lines
147 B
TOML
3 lines
147 B
TOML
# std::process::Command::new may inadvertly run executables from the current working directory
|
|
disallowed-methods = ["std::process::Command::new"]
|