Skip to content

Commit

Permalink
Bugfixing tar creation
Browse files Browse the repository at this point in the history
  • Loading branch information
rootpd committed Nov 15, 2018
1 parent 842234b commit c9179a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Beam/go/cmd/segments/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ gen:
rm -fr goagen*

build-static: gen
CGO_ENABLED=0 GOOS=$(TARGET_GOOS) GOARCH=$(TARGET_GOARCH) go build -a -installsuffix cgo -o segments
CGO_ENABLED=0 GOOS=$(TARGET_GOOS) GOARCH=$(TARGET_GOARCH) go build -a -installsuffix cgo -o segments$(TARGET_SUFFIX)

docker-build:
set -e; \
Expand Down
2 changes: 1 addition & 1 deletion Beam/go/cmd/segments/builder/build
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -e

cp -a /src/build/. /go/src/gitlab.com/remp/remp/Beam/go 1>&2
cd cmd/segments && make build-static 1>&2
tar -cf - segments swagger
tar -cf - segments${TARGET_SUFFIX} swagger
2 changes: 1 addition & 1 deletion Beam/go/cmd/tracker/builder/build
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -e

cp -a /src/build/. /go/src/gitlab.com/remp/remp/Beam/go 1>&2
cd cmd/tracker && make build-static 1>&2
tar -cf - tracker swagger
tar -cf - tracker${TARGET_SUFFIX} swagger

0 comments on commit c9179a6

Please sign in to comment.