Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
EVEREST-230 Drop version command
Browse files Browse the repository at this point in the history
  • Loading branch information
gen1us2k committed Aug 8, 2023
1 parent 338fe8d commit 6133117
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 62 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ k8s: ## Create a local minikube cluster
kubectl apply -f ./dev/kubevirt-hostpath-provisioner.yaml

release:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -ldflags " -X 'github.com/percona/percona-everest-cli/pkg/version.Version=$(VERSION)'" -o ./dist/everestctl-linux-amd64 ./cmd/everest
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -v -ldflags " -X 'github.com/percona/percona-everest-cli/pkg/version.Version=$(VERSION)'" -o ./dist/everestctl-linux-arm64 ./cmd/everest
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -v -ldflags " -X 'github.com/percona/percona-everest-cli/pkg/version.Version=$(VERSION)'" -o ./dist/everestctl-darwin-amd64 ./cmd/everest
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -v -ldflags " -X 'github.com/percona/percona-everest-cli/pkg/version.Version=$(VERSION)'" -o ./dist/everestctl-darwin-arm64 ./cmd/everest
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -o ./dist/everestctl-linux-amd64 ./cmd/everest
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -v -o ./dist/everestctl-linux-arm64 ./cmd/everest
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -v -o ./dist/everestctl-darwin-amd64 ./cmd/everest
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -v -o ./dist/everestctl-darwin-arm64 ./cmd/everest
1 change: 0 additions & 1 deletion commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ func NewRootCmd(l *zap.SugaredLogger) *cobra.Command {
rootCmd.AddCommand(newProvisionCmd(l))
rootCmd.AddCommand(newListCmd(l))
rootCmd.AddCommand(newDeleteCmd(l))
rootCmd.AddCommand(newVersionCmd(l))

return rootCmd
}
37 changes: 0 additions & 37 deletions commands/version.go

This file was deleted.

20 changes: 0 additions & 20 deletions pkg/version/version.go

This file was deleted.

0 comments on commit 6133117

Please sign in to comment.