Initial commit

This commit is contained in:
Jean Lucas
2019-11-05 13:16:44 -05:00
commit 4498f5f339
3 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
--- Makefile 2019-11-05 13:19:33.405968540 -0500
+++ Makefile 2019-11-05 13:20:38.358685158 -0500
@@ -55,7 +55,12 @@
# Build a beta version of stripe
build:
go generate ./...
- go build -o stripe cmd/stripe/main.go
+ go build \
+ -buildmode pie \
+ -ldflags "-extldflags $(LDFLAGS)" \
+ -trimpath \
+ -o stripe \
+ cmd/stripe/main.go
.PHONY: build
build-dev: