Skip to content

Commit

Permalink
Remove generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Gajewski committed Nov 12, 2016
1 parent 32a89ae commit 46243eb
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 699 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
build/
tmp/
internal/test_fixtures/generated/
cli/internal/test_fixtures/generated/
cli/plugin.so
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,7 @@ install: go get -t -v $(go list ./... | grep -v /internal/)
script:
- go version
- go env
- gofiles=$(find ./ -name '*.go') && [ -z "$gofiles" ] || unformatted=$(goimports -l $gofiles) && [ -z "$unformatted" ] || (echo >&2 "Go files must be formatted with gofmt. Following files has problem:\n $unformatted" && false)
- gofiles=$(find ./ -name '*.go' | grep -v generated) && [ -z "$gofiles" ] || unformatted=$(goimports -l $gofiles) && [ -z "$unformatted" ] || (echo >&2 "Go files must be formatted with gofmt. Following files has problem:\n $unformatted" && false)
- diff <(echo -n) <(gofmt -s -d .)
- golint ./... # This won't break the build, just show warnings
- ineffassign .
Expand Down
178 changes: 0 additions & 178 deletions cli/internal/test_fixtures/generated/basic_plugin/plugin.go

This file was deleted.

Binary file not shown.

0 comments on commit 46243eb

Please sign in to comment.