Fixed split_maybe_args to split on default shell IFS (space, tab, ne…#155066
Fixed split_maybe_args to split on default shell IFS (space, tab, ne…#155066Sandijigs wants to merge 3 commits into
Conversation
|
The run-make-support library was changed cc @jieyouxu |
|
|
|
r? @jieyouxu rustbot has assigned @jieyouxu. Use Why was this reviewer chosen?The reviewer was selected based on:
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
Thanks for the PR. However, I am going to close this PR in favor of an earlier PR (#154479) when the PR author already claimed the issue. |
|
Also, please do not submit PR descriptions generated via LLMs. |
oh , okay , I made this PR in reference to the outreachy issue :implement shell whitespace splitting correctly |
This PR fixes the
split_maybe_argsfunction inrun-make-supportto correctly spliton default shell IFS characters (space, tab, newline), instead of only splitting
on spaces.
Relates to implement shell whitespace splitting correctly