mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
Previously the "use" command had the following shortcomings: * a subprocess was created instead of replacing the shell process * whitespace in arguments was not handled correctly Implementation detail: In shell context the `"$@"` expression should be used (instead of `$*`). This allows the safe handling of arguments containing whitespace. Closes: #20001 Signed-off-by: Lars Kruse <devel@sumpfralle.de>