We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2bf22 commit 0a91a39Copy full SHA for 0a91a39
.gitignore
@@ -16,6 +16,8 @@ sdks/**/vendor/**/*
16
runners/**/vendor/**/*
17
**/.gradletasknamecache
18
**/generated/*
19
+/go.mod
20
+/go.sum
21
22
# Ignore sources generated into the main tree
23
**/src/main/generated/**
local-env-setup.sh
@@ -24,7 +24,7 @@ darwin_install_pip3_packages() {
24
25
install_go_packages(){
26
echo "Installing goavro"
27
- go get github.com/linkedin/goavro/v2
+ go mod init beam-runtime && go get github.com/linkedin/goavro/v2
28
# As we are using bash, we are assuming .bashrc exists.
29
grep -qxF "export GOPATH=${PWD}/sdks/go/examples/.gogradle/project_gopath" ~/.bashrc
30
gopathExists=$?
0 commit comments