Skip to content

Commit 75f0e48

Browse files
authored
chore: fix fmtcheck targets (#966)
1 parent 3e8567b commit 75f0e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gofmtcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Check gofmt
44
echo "==> Checking that code complies with gofmt requirements..."
5-
gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`)
5+
gofmt_files=$(gofmt -l `find tencentcloud -name '*.go' | grep -v vendor`)
66
if [[ -n ${gofmt_files} ]]; then
77
echo 'gofmt needs running on the following files:'
88
echo "${gofmt_files}"

0 commit comments

Comments
 (0)