I am getting an error when trying to resolve go de...
# general
n
I am getting an error when trying to resolve go dependencies and not sure how to resolve the problem. Anyone any idea what path to create to resolve it?
Copy code
3rdparty/go/github.com/spf13/afero has remote dependencies which require local declaration:
                   	--> <http://golang.org/x/text/unicode/norm|golang.org/x/text/unicode/norm> (expected go_remote_library declaration at 3rdparty/go/golang.org/x/text:unicode/norm)
                   	--> <http://golang.org/x/text/transform|golang.org/x/text/transform> (expected go_remote_library declaration at 3rdparty/go/golang.org/x/text:transform)
                   3rdparty/go/github.com/fsnotify/fsnotify has remote dependencies which require local declaration:
                   	--> <http://golang.org/x/sys/unix|golang.org/x/sys/unix> (expected go_remote_library declaration at 3rdparty/go/golang.org/x/sys:unix)
FAILURE: Failed to resolve transitive Go remote dependencies.
They are the only dependencies where it says it expected a path with a colon => 3rdparty/go/golang.org/x/*sys:unix* I am kind of lost as nothing I tried worked. Is there some magic syntax which I can use? Replace colon with some special char in the path? Couldn't find anything in the docs about it.