Skip to content

Commit

Permalink
fix(backup/source): Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Oct 8, 2021
1 parent 28e8449 commit 65c3997
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backup/source/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (s Kubernetes) Backup() (io.ReadSeeker, error) {
if s.Name != "" {
args = append(args, s.Name)
}
fmt.Println(args)

cmd := exec.Command(
"kubectl",
args...,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (s KubernetesTLSSecret) Backup() (io.ReadSeeker, error) {
if s.SecretName != "" {
args = append(args, s.SecretName)
}
fmt.Println(args)

cmd := exec.Command(
"kubectl",
args...,
Expand Down

0 comments on commit 65c3997

Please sign in to comment.