Skip to content

Commit

Permalink
initial commit (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-codefresh authored Oct 11, 2021
1 parent 9cd0a24 commit 795d4d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/commands/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ func RunRepoUninstall(ctx context.Context, opts *RepoUninstallOptions) error {
return err
}

log.G().Warnf("Continuing uninstall, even though failed getting repo: %w", err)
log.G().Warnf("Continuing uninstall, even though failed getting repo: %v", err)
}

var revision string
Expand All @@ -381,7 +381,7 @@ func RunRepoUninstall(ctx context.Context, opts *RepoUninstallOptions) error {
return err
}

log.G().Warnf("Continuing uninstall, even though failed uninstalling from repo: %w", err)
log.G().Warnf("Continuing uninstall, even though failed uninstalling from repo: %v", err)
}
}

Expand All @@ -391,7 +391,7 @@ func RunRepoUninstall(ctx context.Context, opts *RepoUninstallOptions) error {
return err
}

log.G().Warnf("Continuing uninstall, even though failed completing deletion of cluster resources: %w", err)
log.G().Warnf("Continuing uninstall, even though failed completing deletion of cluster resources: %v", err)
}

if r != nil && repofs != nil {
Expand All @@ -401,7 +401,7 @@ func RunRepoUninstall(ctx context.Context, opts *RepoUninstallOptions) error {
return err
}

log.G().Warnf("Continuing uninstall, even though failed removing leftovers from repo: %w", err)
log.G().Warnf("Continuing uninstall, even though failed removing leftovers from repo: %v", err)
}
}

Expand Down

0 comments on commit 795d4d9

Please sign in to comment.