diff options
author | Wolfy-J <[email protected]> | 2018-06-23 13:15:33 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-23 13:15:33 +0300 |
commit | 38d694411abbdb0c31b08b96452fa0604a93418a (patch) | |
tree | 828492153bd4893347534e6ee9858bbb4d45f233 /build.sh | |
parent | 14a54572d7a3754aeb81d3dc9949276b7fff04fe (diff) |
support for realtime error aggegration
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1,11 +1,8 @@ #!/bin/bash -set -e - cd $(dirname "${BASH_SOURCE[0]}") OD="$(pwd)" - # Pushes application version into the build information. -RR_VERSION=1.0.1 +RR_VERSION=1.0.2 # Hardcode some values to the core package LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}" @@ -47,4 +44,4 @@ if [ "$1" == "all" ]; then exit fi -CGO_ENABLED=0 go build -ldflags "$LDFLAGS -extldflags '-static'" -o "$OD/rr" cmd/rr/main.go
\ No newline at end of file +CGO_ENABLED=0 go build -ldflags "$LDFLAGS -extldflags '-static'" -o "$OD/rr" cmd/rr/main.go |