brandboat commented on PR #20628:
URL: https://github.com/apache/kafka/pull/20628#issuecomment-3361240750
@chia7712 , below are steps to verify the release tarball have no changes
after this patch.
```
git checkout trunk
./gradlew releaseTarGz
cd core/build/distributions/
tar -xvf core/build/distributions/kafka_2.13-4.2.0-SNAPSHOT.tgz
cd site-docs
tar -xvf kafka_2.13-4.2.0-SNAPSHOT-site-docs.tgz
rm kafka_2.13-4.2.0-SNAPSHOT-site-docs.tgz
cd ../
find . -type f -exec stat -f "%z %N" {} \; > ~/Downloads/trunk
```
checkout to `KAFKA-19750` branch
```
git checkout KAFKA-19750
./gradlew releaseTarGz
cd core/build/distributions/
tar -xvf core/build/distributions/kafka_2.13-4.2.0-SNAPSHOT.tgz
cd site-docs
tar -xvf kafka_2.13-4.2.0-SNAPSHOT-site-docs.tgz
rm kafka_2.13-4.2.0-SNAPSHOT-site-docs.tgz
cd ../
find . -type f -exec stat -f "%z %N" {} \; > ~/Downloads/KAFKA-19750
```
`diff ~/Downloads/KAFKA-19750 ~/Downoads/trunk` show no output, these two
files content are the same.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]