Skip to content

Commit

Permalink
remove pull command print statement
Browse files Browse the repository at this point in the history
Signed-off-by: Kushal Harish Naidu <kushal.harish.naidu@ericsson.com>
  • Loading branch information
kushnaidu committed Mar 7, 2024
1 parent 764f0d0 commit bbbabef
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkg/cli/commands/rpkg/pull/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ package pull

import (
"context"
"fmt"
"io"
"os"
"path/filepath"
Expand Down Expand Up @@ -97,7 +96,7 @@ func (r *runner) preRunE(_ *cobra.Command, _ []string) error {
return nil
}

func (r *runner) runE(cmd *cobra.Command, args []string) error {
func (r *runner) runE(_ *cobra.Command, args []string) error {
const op errors.Op = command + ".runE"

if len(args) == 0 {
Expand Down Expand Up @@ -127,7 +126,6 @@ func (r *runner) runE(cmd *cobra.Command, args []string) error {
return errors.E(op, err)
}
}
fmt.Fprintf(cmd.OutOrStdout(), "%s pulled\n", packageName)
return nil
}

Expand Down

0 comments on commit bbbabef

Please sign in to comment.