Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(contribute): Change go mod tidy to make go-tidy #5131

Merged
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions docs/community/contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ that integrates all Flyte components into a single binary.
# The version of each component/library used to build the single binary are defined in `go.mod`.
sudo apt-get -y install jq # You may need to install jq
make clean # (Optional) Run this only if you want to run the newest version of flyteconsole
go mod tidy
make go-tidy
make compile

# Step 3: Prepare a namespace template for the cluster resource controller.
Expand Down Expand Up @@ -447,7 +447,7 @@ The following instructions provide guidance on how to build single binary with y
cd flyte/flyteadmin

# Step 3: Now, you can build the single binary. Go back to Flyte directory.
go mod tidy
make go-tidy
make compile
POD_NAMESPACE=flyte ./flyte start --config flyte-single-binary-local.yaml

Expand Down
Loading