From 1078292ac6d99b9fda4b6c518d59979b1ba70954 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 5 Jan 2023 19:33:14 +0530 Subject: [PATCH] MM-45967: Print diff output in go mod tidy (#21984) https://mattermost.atlassian.net/browse/MM-45967 ```release-note NONE ``` --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e10fa93097..c53ed45a72 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -140,7 +140,7 @@ jobs: command: | cd mattermost-server make modules-tidy - if [[ -n $(git status --porcelain) ]]; then echo "Please tidy up the Go modules using make modules-tidy"; exit 1; fi + if [[ -n $(git status --porcelain) ]]; then echo "Please tidy up the Go modules using make modules-tidy"; git diff; exit 1; fi check-store-layers: docker: - image: cimg/go:1.18