Skip to content

Commit

Permalink
Merge pull request #21 from richardlt/fixes/badDependency
Browse files Browse the repository at this point in the history
fix(animate): remove bad dependency usage
  • Loading branch information
richardlt authored Mar 3, 2019
2 parents 0eeee53 + 7706570 commit d81fe1d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions animate/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"strings"
"time"

"github.com/ovh/cds/sdk"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"

Expand All @@ -29,7 +28,7 @@ func Start(uri string) error {
if !info.IsDir() && strings.HasSuffix(path, ".json") {
buf, err := ioutil.ReadFile(path)
if err != nil {
return sdk.WithStack(err)
return errors.WithStack(err)
}

var h header
Expand Down

0 comments on commit d81fe1d

Please sign in to comment.