You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by du...@apache.org on 2022/04/19 08:19:21 UTC

[brooklyn-client] 01/01: This seems to make the cli build with go 1.18

This is an automated email from the ASF dual-hosted git repository.

duncangrant pushed a commit to branch fix-go-18
in repository https://gitbox.apache.org/repos/asf/brooklyn-client.git

commit 5ddcf1affe04048868eff14792e82e53d2f47454
Author: Duncan Grant <du...@cloudsoft.io>
AuthorDate: Tue Apr 19 09:18:14 2022 +0100

    This seems to make the cli build with go 1.18
    
    Based on this https://stackoverflow.com/questions/71507321/go-1-18-build-error-on-mac-unix-syscall-darwin-1-13-go253-golinkname-mus
---
 cli/go.mod | 1 +
 cli/go.sum | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/cli/go.mod b/cli/go.mod
index 9891407..c89553b 100644
--- a/cli/go.mod
+++ b/cli/go.mod
@@ -22,6 +22,7 @@ require (
 	github.com/matryer/is v1.2.0
 	github.com/urfave/cli/v2 v2.3.0
 	golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
+	golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
 	golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
 	k8s.io/client-go v11.0.0+incompatible
 )
diff --git a/cli/go.sum b/cli/go.sum
index 1854aa8..ab9eb3e 100644
--- a/cli/go.sum
+++ b/cli/go.sum
@@ -20,6 +20,8 @@ golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 h1:YyJpGZS1sBuBCzLAR1VEpK193
 golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw=
 golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20220412211240-33da011f77ad h1:ntjMns5wyP/fN65tdBD4g8J5w8n015+iIIs9rtjXkY0=
+golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/term v0.0.0-20201117132131-f5c789dd3221 h1:/ZHdbVpdR/jk3g30/d4yUL0JU9kksj8+F/bnQUVLGDM=
 golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
 golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d h1:SZxvLBoTP5yHO3Frd4z4vrF+DBX9vMVanchswa69toE=