Skip to content

Commit

Permalink
fix(animate): remove bad dependency usage
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlt committed Mar 3, 2019
1 parent 0eeee53 commit 7706570
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 7706570

Please sign in to comment.