make plg target uses go build instead of go install

This commit is contained in:
Kasey Rodgers 2022-06-09 14:53:03 -07:00
parent 37ec0874bc
commit 771976a195

View file

@ -170,7 +170,7 @@ install:
# Install the single-node PLG version of FeatureBase
plg:
$(GO) install -tags='plg $(BUILD_TAGS)' -ldflags $(LDFLAGS) $(FLAGS) ./cmd/featurebase
$(GO) build -tags='plg $(BUILD_TAGS)' -ldflags $(LDFLAGS) $(FLAGS) ./cmd/featurebase
install-bench:
$(GO) install -tags='$(BUILD_TAGS)' -ldflags $(LDFLAGS) $(FLAGS) ./cmd/pilosa-bench