Skip to content

Commit

Permalink
Remove ? from Makefile + gofmt
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Levine <stephen.levine@gmail.com>
  • Loading branch information
sclevine committed Jul 9, 2019
1 parent 2d405d9 commit 3b08815
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export GO111MODULE = on

GOCMD=?go
GOCMD=go
GOENV=GOOS=linux GOARCH=amd64 CGO_ENABLED=0
GOBUILD=$(GOCMD) build -mod=vendor
GOTEST=$(GOCMD) test -mod=vendor
Expand Down
5 changes: 3 additions & 2 deletions caching_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import (
"crypto/sha256"
"encoding/hex"
"fmt"
"github.com/buildpack/imgutil"
"github.com/pkg/errors"
"io"
"os"

"github.com/buildpack/imgutil"
"github.com/pkg/errors"

"github.com/buildpack/lifecycle/cache"
)

Expand Down
3 changes: 2 additions & 1 deletion utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ import (
"path/filepath"
"testing"

"github.com/buildpack/lifecycle"
"github.com/google/go-cmp/cmp"
"github.com/sclevine/spec"
"github.com/sclevine/spec/report"

"github.com/buildpack/lifecycle"
)

func TestUtils(t *testing.T) {
Expand Down

0 comments on commit 3b08815

Please sign in to comment.