We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1adfffd commit efb153eCopy full SHA for efb153e
.github/workflows/dependencies.yml
@@ -56,7 +56,7 @@ jobs:
56
- name: install the bootstrap toolchain
57
run: |
58
# Extract the stage0 version
59
- TOOLCHAIN=$(jq -r '.compiler | {version,date} | join("-")' -- src/stage0.json)
+ TOOLCHAIN=$(awk -F= '{a[$1]=$2} END {print(a["compiler_version"] "-" a["compiler_date"])}' src/stage0)
60
# Install and set as default
61
rustup toolchain install --no-self-update --profile minimal $TOOLCHAIN
62
rustup default $TOOLCHAIN
0 commit comments