diff --git a/tools/compare.bash b/tools/compare.bash index 7d861247..17d6796c 100755 --- a/tools/compare.bash +++ b/tools/compare.bash @@ -9,6 +9,4 @@ test -d $upstreamrepo || git clone git@github.com: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 .