Hi everyone I ran into this issue when building. ...
# contribute
b
Hi everyone I ran into this issue when building. I currently have:
Copy code
go 1.16.2
dotnet-core 3.1
dotnet-runtime 3.1
aspnet-runtime 3.1
yarn
nodeJS 15.12.0
python 3.9.2
w
I’ve not seen this class of error before myself. I wonder if @broad-dog-22463 or @tall-librarian-49374 might know anything about this?
b
@white-balloon-205 I was able to resolve these and the
make
build system seems to be running just fine. However, I have this other problem with a lot of imports not being resolved. So the forked repository is in 
$GOPATH/src/github.com/my-username/pulumi
However it has trouble resolving imports such as 
"<http://github.com/pulumi/pulumi/pkg/v2/secrets|github.com/pulumi/pulumi/pkg/v2/secrets>"
. The Make build system runs just fine, but I have about 2K errors on the VS Code side of things. Also, is there a command I can run from the root of the project that will get all the go dependencies? I've used 
go get -d ./...
 so far, by going into the 
pkg
 and 
sdk
 directories and then running that. I saw other people also complaining about VS Code and 
gopls
 (the go language server) not playing well at all but I fee like i'm making a mistake somewhere.
t
make ensure
should get the dependencies
b
@tall-librarian-49374 Imports still broken after
make ensure
annoyingly