mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-14 05:26:34 +02:00
Clean up bash variable naming
This commit is contained in:
parent
23a8e99b6b
commit
c1964a6b50
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ runs:
|
||||||
- id: flags
|
- id: flags
|
||||||
run: |
|
run: |
|
||||||
: construct rustup command line
|
: construct rustup command line
|
||||||
echo "::set-output name=targets::$(for c in ${targets//,/ }; do echo -n ' --target' $c; done)"
|
echo "::set-output name=targets::$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)"
|
||||||
echo "::set-output name=components::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)"
|
echo "::set-output name=components::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)"
|
||||||
env:
|
env:
|
||||||
targets: ${{inputs.target}}
|
targets: ${{inputs.target}}
|
||||||
|
|
Loading…
Reference in a new issue