mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-13 04:56:33 +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
|
||||
run: |
|
||||
: 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)"
|
||||
env:
|
||||
targets: ${{inputs.target}}
|
||||
|
|
Loading…
Reference in a new issue