From 6fa96105b9ebdd2970814d57a752f0efe41ac85d Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Thu, 24 Jan 2019 10:57:19 -0700 Subject: [PATCH] Fail if source is dirty --- scripts/validate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/validate b/scripts/validate index 4ecfda2ea8..90d12fa663 100755 --- a/scripts/validate +++ b/scripts/validate @@ -37,5 +37,5 @@ test -z "$(go fmt ${PACKAGES} | \ if [ -n "$DIRTY" ]; then echo Source dir is dirty git status --porcelain --untracked-files=no - #exit 1 + exit 1 fi