cmd/wire: add a --header_file flag to the "gen" and "diff" commands (#175)

This commit is contained in:
Robert van Gent
2019-05-16 09:56:42 -07:00
committed by GitHub
parent d76a979091
commit fe01654174
10 changed files with 133 additions and 11 deletions

View File

@@ -52,7 +52,7 @@ trap cleanup EXIT
git clone -b "$UPSTREAM_BRANCH" . "$MASTER_CLONE_DIR" &> /dev/null
incompatible_change_pkgs=()
PKGS=$(cd "$MASTER_CLONE_DIR"; go list ./... | grep -v test)
PKGS=$(cd "$MASTER_CLONE_DIR"; go list ./... | grep -v test | grep -v internal)
for pkg in $PKGS; do
echo " Testing ${pkg}..."