From 9eddca3728f5c9f7682ae200546541c4d8bfa84b Mon Sep 17 00:00:00 2001 From: elad-codefresh Date: Mon, 29 Nov 2021 09:44:07 +0200 Subject: [PATCH] cap --- pkg/git/repository.go | 4 ++-- pkg/git/repository_test.go | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/git/repository.go b/pkg/git/repository.go index 8c21053d..252112a7 100644 --- a/pkg/git/repository.go +++ b/pkg/git/repository.go @@ -121,7 +121,7 @@ var ( func AddFlags(cmd *cobra.Command, opts *AddFlagsOptions) *CloneOptions { co := &CloneOptions{ FS: fs.Create(opts.FS), - createIfNotExist: opts.CreateIfNotExist, + CreateIfNotExist: opts.CreateIfNotExist, } if opts.Prefix != "" && !strings.HasSuffix(opts.Prefix, "-") { @@ -182,7 +182,7 @@ func (o *CloneOptions) GetRepo(ctx context.Context) (Repository, fs.FS, error) { if err != nil { switch err { case transport.ErrRepositoryNotFound: - if !o.createIfNotExist { + if !o.CreateIfNotExist { return nil, nil, err } diff --git a/pkg/git/repository_test.go b/pkg/git/repository_test.go index e9531d5b..a5db5882 100644 --- a/pkg/git/repository_test.go +++ b/pkg/git/repository_test.go @@ -491,10 +491,10 @@ func TestGetRepo(t *testing.T) { assert.Error(t, transport.ErrRepositoryNotFound, e) }, }, - "Should fail when createIfNotExist is true and create fails": { + "Should fail when CreateIfNotExist is true and create fails": { opts: &CloneOptions{ Repo: "https://github.com/owner/name", - createIfNotExist: true, + CreateIfNotExist: true, }, wantErr: "some error", cloneFn: func(_ context.Context, opts *CloneOptions) (*repo, error) { @@ -526,10 +526,10 @@ func TestGetRepo(t *testing.T) { assert.EqualError(t, e, "failed to initialize repository: some error") }, }, - "Should create and init repo when createIfNotExist is true": { + "Should create and init repo when CreateIfNotExist is true": { opts: &CloneOptions{ Repo: "https://github.com/owner/name", - createIfNotExist: true, + CreateIfNotExist: true, FS: fs.Create(memfs.New()), }, wantErr: "some error",