Skip to content
Snippets Groups Projects
Commit fad0db6d authored by tcely's avatar tcely :speech_balloon: Committed by Kevin Daudt
Browse files

community/rust: quote "$@"

Expansion of $@ inside double-quotes is special.

It is not appropriate here to re-split the results of the expansion.

Closes GH-8132
parent 68c3a838
No related branches found
No related tags found
No related merge requests found
......@@ -254,8 +254,7 @@ _cargo_doc() {
_mv() {
local dest; for dest; do true; done # get last argument
mkdir -p "$dest"
# shellcheck disable=SC2068
mv $@
mv "$@"
}
sha512sums="65ae2615f4639ccea146fc431aca62e6f0793aa5e584e786e706eefb30588056080300fd5752ce9226067dc213f1a468f96c21b2334f22c5751fa90ddbd3a2b4 rustc-1.33.0-src.tar.gz
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment