mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 08:23:47 +01:00
Makefile: avoid using deprecated xargs arguments
This commit is contained in:
parent
49816e67bd
commit
9a62d2f8ad
2
Makefile
2
Makefile
@ -48,7 +48,7 @@ ifdef GO_LATEST
|
||||
go vet $(BUILDTAGS) -printfuncs Debugf,Infof,Logf,Errorf ./...
|
||||
errcheck $(BUILDTAGS) $(GO_FILES)
|
||||
find . -name \*.go | grep -v /vendor/ | xargs goimports -d | grep . ; test $$? -eq 1
|
||||
go list ./... | grep -v /vendor/ | xargs -i golint {} | grep -E -v '(StorageUrl|CdnUrl)' ; test $$? -eq 1
|
||||
go list ./... | grep -v /vendor/ | xargs -n1 golint | grep -E -v '(StorageUrl|CdnUrl)' ; test $$? -eq 1
|
||||
else
|
||||
@echo Skipping tests as not on Go stable
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user