File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -151,11 +151,10 @@ wget https://ci-artifacts.rust-lang.org/rustc-builds/${TAG}/rustc-nightly-src.ta
151
151
# Download a source tarball for a stable release
152
152
# wget https://static.rust-lang.org/dist/rustc-${TAG}-src.tar.xz
153
153
154
- # Decompress the tarballs and compare their contents
155
- cd build/dist
156
- mkdir archive-local && tar -xf rustc-* -src.tar.xz --strip-components=1 -Carchive-local
157
- mkdir archive-ci && tar -xf ../../rustc-* -src.tar.xz --strip-components=1 -Carchive-ci
158
- diff --brief --recursive archive-local archive-ci
154
+ # Decompress the tarballs and check if they're the same
155
+ xz --decompress rustc-* -src.tar.xz
156
+ xz --decompress build/dist/rustc-* -src.tar.xz
157
+ diff rustc-* -src.tar build/dist/rustc-* -src.tar
159
158
```
160
159
161
160
</details >
You can’t perform that action at this time.
0 commit comments