File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ version:
6262# Run linters
6363# ##
6464lint :
65- @FAIL=0 ; echo -n " - go fmt :" ; OUT=` gofmt -l . 2>&1 | grep -v ^vendor ` ; \
65+ @FAIL=0 ; echo -n " - go fmt :" ; OUT=` gofmt -l client server plik ` ; \
6666 if [[ -z " $$ OUT" ]]; then echo " OK" ; else echo " FAIL" ; echo " $$ OUT" ; FAIL=1 ; fi ; \
6767 echo -n " - go vet :" ; OUT=` go vet ./... 2>&1 ` ; \
6868 if [[ -z " $$ OUT" ]]; then echo " OK" ; else echo " FAIL" ; echo " $$ OUT" ; FAIL=1 ; fi ; \
7272# Run fmt
7373# ##
7474fmt :
75- @gofmt -w -s $( shell find . -type f -name ' * .go' -not -path "./vendor/ * " )
75+ @gofmt -w -s client server plik
7676
7777# ##
7878# Run tests
@@ -143,4 +143,4 @@ clean-all: clean clean-frontend
143143# by make, we must declare these targets as phony to avoid :
144144# "make: `client' is up to date" cases at compile time
145145# ##
146- .PHONY : client clients server release
146+ .PHONY : client clients server release
You can’t perform that action at this time.
0 commit comments