Skip to content

Commit 423b53e

Browse files
authored
Run goimports (#51)
find . -type f -name "*.go" -print0 | xargs --null goimports -w
1 parent 3849c1a commit 423b53e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

client/buildpacks.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828
)
2929

3030
const (
31-
image = "conformance-test-func"
32-
builderURL = "us.gcr.io/fn-img/buildpacks/%s/builder:%s"
31+
image = "conformance-test-func"
32+
builderURL = "us.gcr.io/fn-img/buildpacks/%s/builder:%s"
3333
)
3434

3535
type buildpacksFunctionServer struct {
@@ -74,13 +74,13 @@ func (b *buildpacksFunctionServer) OutputFile() ([]byte, error) {
7474

7575
func (b *buildpacksFunctionServer) build(ctx context.Context) error {
7676
builder := fmt.Sprintf(builderURL, b.runtime, b.tag)
77-
77+
7878
cmd := exec.Command("docker", "pull", builder)
7979
output, err := cmd.CombinedOutput()
8080
if err != nil {
8181
return fmt.Errorf("failed to pull builder image %s: %v: %s", builder, err, string(output))
8282
}
83-
83+
8484
packClient, err := pack.NewClient()
8585
if err != nil {
8686
return fmt.Errorf("getting pack client: %v", err)

0 commit comments

Comments
 (0)