From 011cbcdabaa91cddfc1c49013ca372a8d4a84575 Mon Sep 17 00:00:00 2001 From: Kagashino Date: Mon, 18 Apr 2022 22:34:10 +0800 Subject: [PATCH] chore: fix fmtcheck targets --- scripts/gofmtcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gofmtcheck.sh b/scripts/gofmtcheck.sh index 1c055815f8..a2719aee80 100755 --- a/scripts/gofmtcheck.sh +++ b/scripts/gofmtcheck.sh @@ -2,7 +2,7 @@ # Check gofmt echo "==> Checking that code complies with gofmt requirements..." -gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`) +gofmt_files=$(gofmt -l `find tencentcloud -name '*.go' | grep -v vendor`) if [[ -n ${gofmt_files} ]]; then echo 'gofmt needs running on the following files:' echo "${gofmt_files}"