You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Rationale for this change
This is the sub issue apache#44748.
* SC2102 (info): Ranges can only match single chars (mentioned due to duplicates).
* SC2086 (info): Double quote to prevent globbing and word splitting.
```
shellcheck ci/scripts/install_dask.sh
In ci/scripts/install_dask.sh line 33:
pip install dask[dataframe]
^---------^ SC2102 (info): Ranges can only match single chars (mentioned due to duplicates).
In ci/scripts/install_dask.sh line 35:
pip install dask[dataframe]==${dask}
^---------^ SC2102 (info): Ranges can only match single chars (mentioned due to duplicates).
^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.
Did you mean:
pip install dask[dataframe]=="${dask}"
For more information:
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
https://www.shellcheck.net/wiki/SC2102 -- Ranges can only match single char...
```
### What changes are included in this PR?
Quote varibles
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* GitHub Issue: apache#46846
Authored-by: Hiroyuki Sato <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
0 commit comments