We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 946d57e commit 4009a22Copy full SHA for 4009a22
build.sh
@@ -7,13 +7,12 @@ GO_BIN=go
7
# Build our binary
8
GOPATH=/tmp/go "$GO_BIN" get github.com/asggo/store
9
GOPATH=/tmp/go "$GO_BIN" build -o bin/scrape
10
-GOPATH=/tmp/go "$GO_BIN" build -o bin/search ./search/
+GOPATH=/tmp/go "$GO_BIN" build -o bin/kv github.com/asggo/store/src
11
12
# Stop Service
13
sudo service scrape stop
14
15
cp bin/scrape ${INSTALL_DIR}
16
-cp bin/search ${INSTALL_DIR}
17
-
+cp bin/kv ${INSTALL_DIR}
18
# Start Service
19
sudo service scrape start
search/search.go
0 commit comments