Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the hack/verify-dist.sh message #1999

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions hack/verify-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

set -e

RED='\033[0;31m'
NOCOLOR='\033[0m'
GREEN='\033[0;32m'

# We don't need grunt to be installed globally for the system, so
# we can amend our path to look into the local node_modules for the
# correct binaries.
Expand All @@ -12,9 +16,9 @@ grunt build

echo "Verifying that checked in built files under dist match the source..."
if [[ $(git status -s -u dist*) ]]; then
echo -e "${RED}Built /dist does not match what is committed, run 'grunt build' and include the results in your commit.${NOCOLOR}"
git diff --exit-code dist*
echo "Built dist does not match what is committed, run 'grunt build' and include the results in your commit."
exit 1
else
echo "Verified."
echo -e "${GREEN}Verified. Rebuilt /dist matches what has been committed.${NOCOLOR}"
fi