Merge "Reorder failing dependency test output"

This commit is contained in:
David Pursehouse 2017-06-12 23:46:37 +00:00 committed by Gerrit Code Review
commit aad1bce8bc

@ -1,14 +1,14 @@
#!/usr/bin/env bash
wct_bin=$(which wct)
if [[ -z "$wct_bin" ]]; then
echo "WCT must be on the path."
exit 1
fi
npm_bin=$(which npm)
if [[ -z "$npm_bin" ]]; then
echo "NPM must be on the path."
echo "NPM must be on the path. (https://www.npmjs.com/)"
exit 1
fi
wct_bin=$(which wct)
if [[ -z "$wct_bin" ]]; then
echo "WCT must be on the path. (https://github.com/Polymer/web-component-tester)"
exit 1
fi