Skip to content

Commit

Permalink
More v2 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
codysoyland committed Oct 8, 2019
1 parent 0d0a195 commit 995e18f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -7,7 +7,7 @@ BRANCH := $(if $(TRAVIS_BRANCH),$(TRAVIS_BRANCH),$(if $(CIRCLE_BRANCH),$(CIRCLE_
BRANCH_ID := $(BRANCH)-$(GOOS)-$(GOARCH)
BUILD_TIME := $(shell date -u +%FT%T%z)
SHARD_WIDTH = 20
LDFLAGS="-X github.com/pilosa/pilosa.Version=$(VERSION) -X github.com/pilosa/pilosa.BuildTime=$(BUILD_TIME) -X github.com/pilosa/pilosa.Enterprise=$(if $(ENTERPRISE_ENABLED),1)"
LDFLAGS="-X github.com/pilosa/pilosa/v2.Version=$(VERSION) -X github.com/pilosa/pilosa/v2.BuildTime=$(BUILD_TIME) -X github.com/pilosa/pilosa/v2.Enterprise=$(if $(ENTERPRISE_ENABLED),1)"
GO_VERSION=latest
ENTERPRISE ?= 0
ENTERPRISE_ENABLED = $(subst 0,,$(ENTERPRISE))
Expand Down Expand Up @@ -106,11 +106,11 @@ install:

# `go generate` protocol buffers
generate-protoc: require-protoc require-protoc-gen-gofast
go generate github.com/pilosa/pilosa/internal
go generate github.com/pilosa/pilosa/v2/internal

# `go generate` stringers
generate-stringer:
go generate github.com/pilosa/pilosa
go generate github.com/pilosa/pilosa/v2

generate-pql: require-peg
cd pql && peg -inline pql.peg && cd ..
Expand Down
2 changes: 1 addition & 1 deletion roaring/roaring_stats.go
Expand Up @@ -17,7 +17,7 @@
package roaring

import (
"github.com/pilosa/pilosa/stats"
"github.com/pilosa/pilosa/v2/stats"
)

var statsEv = stats.NewExpvarStatsClient()
Expand Down
2 changes: 1 addition & 1 deletion server/enterprise.go
Expand Up @@ -17,5 +17,5 @@
package server

import (
_ "github.com/pilosa/pilosa/enterprise"
_ "github.com/pilosa/pilosa/v2/enterprise"
)
2 changes: 1 addition & 1 deletion server/setup_logger_arm64.go
Expand Up @@ -18,7 +18,7 @@ import (
"os"
"syscall"

"github.com/pilosa/pilosa/logger"
"github.com/pilosa/pilosa/v2/logger"
"github.com/pkg/errors"
)

Expand Down

0 comments on commit 995e18f

Please sign in to comment.