Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

incorporate latest boilerplate changes #53

Merged
merged 7 commits into from
Jan 24, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ compile:
mkdir -p ./bin
go build -o pflags ./cli/pflags/main.go && mv ./pflags ./bin

gen-config: download_tooling
gen-config:
which pflags || (go get github.com/lyft/flytestdlib/cli/pflags)
@go generate ./...

.PHONY: test_unit_codecov
Expand Down
1 change: 0 additions & 1 deletion boilerplate/lyft/golang_test_targets/download_tooling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ go_install_tool () {
# List of tools to go get
# In the format of "<cli>:<package>" or ":<package>" if no cli
tools=(
"pflags:github.com/lyft/flytestdlib/cli/pflags"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't work. I guess due to the funky dependency of itself.

"golangci-lint:github.com/golangci/golangci-lint/cmd/golangci-lint"
)

Expand Down