Skip to content

Commit

Permalink
Print validated files to stderr (#391)
Browse files Browse the repository at this point in the history
Adding a pipe to tee /dev/stderr so that we can see which files are being
passed to validate-krew-manifest. Though, we print all files before validating
any of them, but still useful since mostly 1 plugin is updated at a time.

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
  • Loading branch information
ahmetb authored and k8s-ci-robot committed Dec 17, 2019
1 parent 6296c90 commit c1a8e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -27,5 +27,5 @@ install: true # skip go get ./...
script:
- export PATH="$PATH:$HOME/.krew/bin";
git diff --name-only --diff-filter=AM $TRAVIS_BRANCH...HEAD |
grep -E 'plugins/.*' |
grep -E 'plugins/.*' | tee /dev/stderr |
xargs -I _ $HOME/bin/validate-krew-manifest -manifest _

0 comments on commit c1a8e89

Please sign in to comment.