From 231073378f36ab2de5aa664bd23e18924fb20389 Mon Sep 17 00:00:00 2001 From: Jakub Sobon Date: Thu, 7 Jul 2022 13:35:59 -0400 Subject: [PATCH] Fixing invalid path to autogen_licenses script. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8be8141..7e75647 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ script: - CGO_ENABLED=1 go test -mod=mod -race ./... - go vet ./... - diff -u <(echo -n) <(gofmt -d -s .) - - diff -u <(echo -n) <(./internal/scripts/autogen_licences.sh .) + - diff -u <(echo -n) <(./private/scripts/autogen_licences.sh .) - diff -u <(echo -n) <(golint ./...) - $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN env: