Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a985d8e

Browse files
committedJul 29, 2021
Auto merge of #87579 - flip1995:clippyup, r=Manishearth
Update Clippy r? `@Manishearth`
2 parents 5fb3394 + 8570a36 commit a985d8e

File tree

284 files changed

+3439
-3116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+3439
-3116
lines changed
 

‎Cargo.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ dependencies = [
542542

543543
[[package]]
544544
name = "clippy"
545-
version = "0.1.55"
545+
version = "0.1.56"
546546
dependencies = [
547547
"cargo_metadata 0.12.0",
548548
"clippy_lints",
@@ -575,7 +575,7 @@ dependencies = [
575575

576576
[[package]]
577577
name = "clippy_lints"
578-
version = "0.1.55"
578+
version = "0.1.56"
579579
dependencies = [
580580
"cargo_metadata 0.12.0",
581581
"clippy_utils",
@@ -596,7 +596,7 @@ dependencies = [
596596

597597
[[package]]
598598
name = "clippy_utils"
599-
version = "0.1.55"
599+
version = "0.1.56"
600600
dependencies = [
601601
"if_chain",
602602
"itertools 0.9.0",

‎src/tools/clippy/.github/deploy.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ rm -rf out/master/ || exit 0
88
echo "Making the docs for master"
99
mkdir out/master/
1010
cp util/gh-pages/index.html out/master
11-
python3 ./util/export.py out/master/lints.json
11+
cp util/gh-pages/lints.json out/master
1212

1313
if [[ -n $TAG_NAME ]]; then
1414
echo "Save the doc for the current tag ($TAG_NAME) and point stable/ to it"
15-
cp -r out/master "out/$TAG_NAME"
16-
rm -f out/stable
17-
ln -s "$TAG_NAME" out/stable
15+
cp -Tr out/master "out/$TAG_NAME"
16+
ln -sf "$TAG_NAME" out/stable
1817
fi
1918

2019
if [[ $BETA = "true" ]]; then
@@ -28,8 +27,8 @@ cp util/gh-pages/versions.html out/index.html
2827
echo "Making the versions.json file"
2928
python3 ./util/versions.py out
3029

31-
cd out
3230
# Now let's go have some fun with the cloned repo
31+
cd out
3332
git config user.name "GHA CI"
3433
git config user.email "gha@ci.invalid"
3534

0 commit comments

Comments
 (0)