Skip to content

Commit

Permalink
fix(compare.bash): use diff -ur
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed May 31, 2023
1 parent 64be330 commit 0684db9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tools/compare.bash
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,4 @@ test -d $upstreamrepo || git clone [email protected]:golang/go.git $upstreamrepo
git pull
git checkout $TAG
)
for file in $(cd $upstreamrepo/src/net/http && find . -type f -name \*.go); do
git diff --no-index $upstreamrepo/src/net/http/$file $file || true
done
diff -ur $upstreamrepo/src/net/http .

0 comments on commit 0684db9

Please sign in to comment.