Skip to content
Snippets Groups Projects

Initial implementation of an elasticsearch indexer in Go

Merged Nick Thomas requested to merge 1-initial-implementation into master
All threads resolved!
1 file
+ 9
0
Compare changes
  • Side-by-side
  • Inline
Makefile 0 → 100755
+ 9
0
#!/usr/bin/make -f
GO_SRC := $(shell find . -iname *.go)
GO15VENDOREXPERIMENT := 1
CGO_ENABLED := 0
es-git-go: ${GO_SRC} Makefile
go build
Loading