Skip to content

Commit

Permalink
use last buildpack version
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumsheep committed May 5, 2023
1 parent 34b271d commit 22f33fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/scaleway/scaleway-cli/v2

go 1.19

replace github.com/buildpacks/pack => github.com/quantumsheep/pack v0.30.0-pre1.0.20230425092336-fc32ac8e0cf1

require (
github.com/alecthomas/assert v1.0.0
github.com/buildpacks/pack v0.30.0-pre1.0.20230418191058-1190b6c52128
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ github.com/buildpacks/imgutil v0.0.0-20230420161652-580610d0124b h1:TsOLD4J7TcHQ
github.com/buildpacks/imgutil v0.0.0-20230420161652-580610d0124b/go.mod h1:hgxVR7UpPvT5gATbRGM582oy048sUocDg6R6PMWAxow=
github.com/buildpacks/lifecycle v0.17.0-pre.1 h1:YE4961UxDaLhtKI45yznzqfkZDoHxiki/aoUx2igvRk=
github.com/buildpacks/lifecycle v0.17.0-pre.1/go.mod h1:yPCzhhQDBoXdrD/9yEBsZ7AXVNPUnX3a4gioZAK5CxI=
github.com/buildpacks/pack v0.30.0-pre1.0.20230418191058-1190b6c52128 h1:jFgfgbYg9pVrhH7YU6/MutgX6atae19XFjN/hi6dCjQ=
github.com/buildpacks/pack v0.30.0-pre1.0.20230418191058-1190b6c52128/go.mod h1:Tez7JQNU4yll+1szd1HSlVlRk8O8mdjTJ/5yVRdHv+E=
github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
github.com/c-bata/go-prompt v0.2.6 h1:POP+nrHE+DfLYx370bedwNhsqmpCUynWPxuHi0C5vZI=
github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY=
Expand Down Expand Up @@ -467,8 +469,6 @@ github.com/pkg/term v1.2.0-beta.2/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiK
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
github.com/quantumsheep/pack v0.30.0-pre1.0.20230425092336-fc32ac8e0cf1 h1:6PfeGamToSeWeQ1s+tr9ve6zohApZ7l2FPa838mET5I=
github.com/quantumsheep/pack v0.30.0-pre1.0.20230425092336-fc32ac8e0cf1/go.mod h1:Tez7JQNU4yll+1szd1HSlVlRk8O8mdjTJ/5yVRdHv+E=
github.com/rivo/tview v0.0.0-20230406072732-e22ce9588bb4 h1:zX+lRcFRPX1jn8A11jxT0dEQhkmUM7pec+9NLK8MiTQ=
github.com/rivo/tview v0.0.0-20230406072732-e22ce9588bb4/go.mod h1:nVwGv4MP47T0jvlk7KuTTjjuSmrGO4JF0iaiNt4bufE=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func Namespace(ctx context.Context, api *container.API, region scw.Region, name
listNamespacesResponse, err := api.ListNamespaces(&container.ListNamespacesRequest{
Region: region,
Name: &name,
}, scw.WithContext(ctx))
}, scw.WithContext(ctx), scw.WithAllPages())
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -47,7 +47,7 @@ func Container(ctx context.Context, api *container.API, region scw.Region, names
Region: region,
NamespaceID: namespaceID,
Name: &name,
}, scw.WithContext(ctx))
}, scw.WithContext(ctx), scw.WithAllPages())
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -82,7 +82,7 @@ func Registry(ctx context.Context, api *registry.API, region scw.Region, name st
listNamespacesResponse, err := api.ListNamespaces(&registry.ListNamespacesRequest{
Region: region,
Name: &name,
}, scw.WithContext(ctx))
}, scw.WithContext(ctx), scw.WithAllPages())
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 22f33fd

Please sign in to comment.