We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdf4c1a commit f3cea40Copy full SHA for f3cea40
Makefile
@@ -0,0 +1,19 @@
1
+# Go parameters
2
+GOCMD=go
3
+GOBUILD=$(GOCMD) build
4
+GOMOD=$(GOCMD) mod
5
+GOTEST=$(GOCMD) test
6
+GOFLAGS := -v
7
+LDFLAGS := -s -w
8
+
9
+ifneq ($(shell go env GOOS),darwin)
10
+LDFLAGS := -extldflags "-static"
11
+endif
12
13
+all: build
14
+build:
15
+ $(GOBUILD) $(GOFLAGS) -ldflags '$(LDFLAGS)' -o "proxify" cmd/proxify/proxify.go
16
+test:
17
+ $(GOTEST) $(GOFLAGS) ./...
18
+tidy:
19
+ $(GOMOD) tidy
internal/runner/banner.go
@@ -14,7 +14,7 @@ const banner = `
`
// Version is the current version
-const version = `0.0.9`
+const version = `0.0.11`
// showBanner is used to show the banner to the user
20
func showBanner() {
0 commit comments