From 7d19c82835585768a7601a1745a344a347f0ee9c Mon Sep 17 00:00:00 2001 From: Andrew Rynhard Date: Mon, 8 Oct 2018 09:11:50 -0700 Subject: [PATCH] chore(ci): show git status when dirty working tree (#74) --- .conform.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.conform.yaml b/.conform.yaml index e38703f3..58738709 100644 --- a/.conform.yaml +++ b/.conform.yaml @@ -43,6 +43,7 @@ script: # Check if working tree is clean. if [[ "{{ .Git.IsClean }}" != "true" ]]; then echo "The working tree is dirty." + git status exit 1 fi