You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
Hi. I'm trying to author a Homebrew recipe for bach. I was asked to make it build from source (see: Homebrew/homebrew-core#14314). However, I could not make it build with the current vendor directory.
Running go build results in the following failures:
# github.com/compose/bach/cmd
cmd/deprovision.go:35: c.DeprovisionDeploymentJSON undefined (type *composeapi.Client has no field or method DeprovisionDeploymentJSON)
cmd/deprovision.go:39: c.DeprovisionDeployment undefined (type *composeapi.Client has no field or method DeprovisionDeployment)
If I remove the vendor directory and perform a go get ./..., it works.
Am I missing something?
The text was updated successfully, but these errors were encountered:
Hi. I'm trying to author a Homebrew recipe for
bach
. I was asked to make it build from source (see: Homebrew/homebrew-core#14314). However, I could not make it build with the currentvendor
directory.Running
go build
results in the following failures:If I remove the
vendor
directory and perform ago get ./...
, it works.Am I missing something?
The text was updated successfully, but these errors were encountered: