@@ -12,7 +12,7 @@ BRANCH_ID := $(BRANCH)-$(GOOS)-$(GOARCH)
1212BUILD_TIME := $(shell date -u +% FT% T% z)
1313SHARD_WIDTH = 20
1414COMMIT := $(shell git describe --exact-match >/dev/null 2>&1 || git rev-parse --short HEAD)
15- LDFLAGS ="-X github.com/molecula /featurebase/v3.Version=$(VERSION ) -X github.com/molecula /featurebase/v3.BuildTime=$(BUILD_TIME ) -X github.com/molecula /featurebase/v3.Variant=$(VARIANT ) -X github.com/molecula /featurebase/v3.Commit=$(COMMIT ) -X github.com/molecula /featurebase/v3.TrialDeadline=$(TRIAL_DEADLINE ) "
15+ LDFLAGS ="-X github.com/featurebasedb /featurebase/v3.Version=$(VERSION ) -X github.com/featurebasedb /featurebase/v3.BuildTime=$(BUILD_TIME ) -X github.com/featurebasedb /featurebase/v3.Variant=$(VARIANT ) -X github.com/featurebasedb /featurebase/v3.Commit=$(COMMIT ) -X github.com/featurebasedb /featurebase/v3.TrialDeadline=$(TRIAL_DEADLINE ) "
1616GO_VERSION =1.19
1717DOCKER_BUILD = # set to 1 to use `docker-build` instead of `build` when creating a release
1818BUILD_TAGS += shardwidth$(SHARD_WIDTH )
@@ -68,7 +68,7 @@ testv-race: testvsub-race
6868#
6969testvsub :
7070 @set -e; for pkg in $( GOPACKAGES) ; do \
71- if [ $$ {pkg:0:38} == " github.com/molecula /featurebase/v3/idk" ]; then \
71+ if [ $$ {pkg:0:38} == " github.com/featurebasedb /featurebase/v3/idk" ]; then \
7272 echo ; echo " ___ skipping subpkg $$ pkg" ; \
7373 continue ; \
7474 fi ; \
@@ -161,7 +161,7 @@ clustertests: vendor
161161 $(DOCKER_COMPOSE ) -f internal/clustertests/docker-compose.yml down
162162
163163# Run the cluster tests with authentication enabled
164- AUTH_ARGS ="-c /go/src/github.com/molecula /featurebase/internal/clustertests/testdata/featurebase.conf"
164+ AUTH_ARGS ="-c /go/src/github.com/featurebasedb /featurebase/internal/clustertests/testdata/featurebase.conf"
165165authclustertests : vendor
166166 CLUSTERTESTS_FB_ARGS=$(AUTH_ARGS ) $(DOCKER_COMPOSE ) -f internal/clustertests/docker-compose.yml down
167167 CLUSTERTESTS_FB_ARGS=$(AUTH_ARGS ) $(DOCKER_COMPOSE ) -f internal/clustertests/docker-compose.yml build
@@ -187,19 +187,19 @@ build-lattice:
187187
188188# `go generate` protocol buffers
189189generate-protoc : require-protoc require-protoc-gen-gofast
190- $(GO ) generate github.com/molecula /featurebase/v3/pb
190+ $(GO ) generate github.com/featurebasedb /featurebase/v3/pb
191191
192192# `go generate` statik assets (lattice UI)
193193generate-statik : build-lattice require-statik
194- $(GO ) generate github.com/molecula /featurebase/v3/statik
194+ $(GO ) generate github.com/featurebasedb /featurebase/v3/statik
195195
196196# `go generate` statik assets (lattice UI) in Docker
197197generate-statik-docker : build-lattice
198198 docker run --rm -t -v $(PWD ) :/pilosa golang:1.15.8 sh -c " go get github.com/rakyll/statik && /go/bin/statik -src=/pilosa/lattice/build -dest=/pilosa -f"
199199
200200# `go generate` stringers
201201generate-stringer :
202- $(GO ) generate github.com/molecula /featurebase/v3
202+ $(GO ) generate github.com/featurebasedb /featurebase/v3
203203
204204generate-pql : require-peg
205205 cd pql && peg -inline pql.peg && cd ..
@@ -210,7 +210,7 @@ generate-proto-grpc: require-protoc require-protoc-gen-go
210210 # TODO: Modify above commands and remove the below mv if possible.
211211 # See https://go-review.googlesource.com/c/protobuf/+/219298/ for info on --go-opt
212212 # I couldn't get it to work during development - Cody
213- cp -r proto/github.com/molecula /featurebase/v3/proto/ proto/
213+ cp -r proto/github.com/featurebasedb /featurebase/v3/proto/ proto/
214214 rm -rf proto/github.com
215215
216216# `go generate` all needed packages
0 commit comments