From 1c3805efae33525e9802ebbf17c1a9e8e7cb7638 Mon Sep 17 00:00:00 2001 From: Alvin Huang <17609145+alvin-huang@users.noreply.github.com> Date: Wed, 17 Jun 2020 11:06:19 -0400 Subject: [PATCH] fix make fmtcheck hint output --- scripts/gofmtcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gofmtcheck.sh b/scripts/gofmtcheck.sh index 1c055815f..7e6fbddf7 100755 --- a/scripts/gofmtcheck.sh +++ b/scripts/gofmtcheck.sh @@ -6,7 +6,7 @@ gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`) if [[ -n ${gofmt_files} ]]; then echo 'gofmt needs running on the following files:' echo "${gofmt_files}" - echo "You can use the command: \`make fmt\` to reformat code." + echo "You can use the command: \`make fmtcheck\` to reformat code." exit 1 fi