Skip to content

Commit

Permalink
Removing debug code.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradylill committed Jun 29, 2018
1 parent d5fe937 commit 8dcb887
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cmd/orb.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ package cmd
import (
"bytes"
"context"
"fmt"
"io/ioutil"
"os"

"github.com/CircleCI-Public/circleci-cli/client"
"github.com/pkg/errors"
Expand Down Expand Up @@ -138,17 +136,13 @@ func loadOrbYaml(path string) (string, error) {

orb, err := ioutil.ReadFile(path)

fmt.Fprintln(os.Stderr, "******************** orb.go")
fmt.Fprintln(os.Stderr, path)
fmt.Fprintln(os.Stderr, err)
if err != nil {
return "", errors.Wrapf(err, "Could not load orb file at %s", path)
}

return string(orb), nil
}


func (response orbConfigResponse) processErrors() error {
var buffer bytes.Buffer

Expand Down

0 comments on commit 8dcb887

Please sign in to comment.