Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
ran gofmt accross the code
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Jan 8, 2018
1 parent 973c4f2 commit 3760363
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion buffalo/cmd/build/archived_assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"path/filepath"
"strings"

"github.com/sirupsen/logrus"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

func (b *Builder) buildExtractedAssets() error {
Expand Down
2 changes: 1 addition & 1 deletion buffalo/cmd/build/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"os"

"github.com/sirupsen/logrus"
"github.com/gobuffalo/packr/builder"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

// Builder builds a Buffalo binary
Expand Down
2 changes: 1 addition & 1 deletion buffalo/cmd/build/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os/exec"
"strings"

"github.com/sirupsen/logrus"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

type debugWriter int
Expand Down
2 changes: 1 addition & 1 deletion buffalo/cmd/build/transform.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"path/filepath"

"github.com/sirupsen/logrus"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

func (b *Builder) transform(path string, fn func([]byte, io.Writer) error) error {
Expand Down
2 changes: 1 addition & 1 deletion buffalo/cmd/build/transform_main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"os"
"path/filepath"

"github.com/sirupsen/logrus"
"github.com/gobuffalo/plush"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

func (b *Builder) transformMain() error {
Expand Down
2 changes: 1 addition & 1 deletion buffalo/cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"regexp"
"strings"

"github.com/sirupsen/logrus"
"github.com/gobuffalo/buffalo/meta"
"github.com/gobuffalo/envy"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"

"github.com/markbates/pop"
"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion grifts/shoulders.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"sort"
"strings"

"github.com/sirupsen/logrus"
"github.com/gobuffalo/envy"
"github.com/markbates/deplist"
"github.com/markbates/grift/grift"
"github.com/sirupsen/logrus"
)

var _ = grift.Desc("shoulders", "Prints a listing all of the 3rd party packages used by buffalo.")
Expand Down
2 changes: 1 addition & 1 deletion logger.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package buffalo

import (
"github.com/sirupsen/logrus"
"github.com/gobuffalo/envy"
"github.com/sirupsen/logrus"
)

// Logger interface is used throughout Buffalo
Expand Down
2 changes: 1 addition & 1 deletion worker/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"sync"
"time"

"github.com/sirupsen/logrus"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)

var _ Worker = &Simple{}
Expand Down

0 comments on commit 3760363

Please sign in to comment.