We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7164405 + c24b276 commit 9a6ad42Copy full SHA for 9a6ad42
scripts/update-revs.sh
@@ -43,12 +43,8 @@ for tool in clippy miri; do
43
echo "Updating $tool branch"
44
git checkout --quiet --detach nightly
45
git branch --quiet --delete --force $tool &>/dev/null || true
46
- if [ $tool == miri ]; then
47
- default="miri, rust-src"
48
- echo -e " - uses: dtolnay/install@xargo\n with:\n bin: xargo-check" >> action.yml
49
- else
50
- default=$tool
51
- fi
+ default=$tool
+ if [ $tool == miri ]; then default+=,\ rust-src; fi
52
sed -i "/required: false/{N;s/\n$/\n default: $default\n/}" action.yml
53
git add action.yml
54
git commit --quiet --message "components: $tool"
0 commit comments