mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-22 16:49:31 +01:00
Handle whitespace in comma separated components
This commit is contained in:
parent
123acc0c06
commit
8fb5bc3133
1 changed files with 3 additions and 1 deletions
|
@ -25,7 +25,9 @@ runs:
|
||||||
run: echo "::set-output name=flag::${{inputs.target && ' --target '}}${{inputs.target}}"
|
run: echo "::set-output name=flag::${{inputs.target && ' --target '}}${{inputs.target}}"
|
||||||
shell: bash
|
shell: bash
|
||||||
- id: components
|
- id: components
|
||||||
run: echo "::set-output name=flag::${{inputs.components && ' --component '}}${{inputs.components}}"
|
run: echo "::set-output name=flag::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)"
|
||||||
|
env:
|
||||||
|
components: ${{inputs.components}}
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: rustup toolchain install ${{inputs.toolchain}}
|
- name: rustup toolchain install ${{inputs.toolchain}}
|
||||||
run: rustup toolchain install ${{inputs.toolchain}}${{steps.target.outputs.flag}}${{steps.components.outputs.flag}} --profile minimal --no-self-update
|
run: rustup toolchain install ${{inputs.toolchain}}${{steps.target.outputs.flag}}${{steps.components.outputs.flag}} --profile minimal --no-self-update
|
||||||
|
|
Loading…
Reference in a new issue