File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,8 +46,10 @@ lint: .bin/golangci-lint-$(GOLANGCI_LINT_VERSION)
4646 .bin/golangci-lint-$(GOLANGCI_LINT_VERSION ) run --timeout=10m ./...
4747
4848.PHONY : install
49+ # Until https://github.com/golang/go/issues/44469 is resolved, we have to use `go build` instead of
50+ # `go install` to customize the executable name.
4951install :
50- GO111MODULE=on go install -tags sqlite .
52+ GO111MODULE=on go build -o " $( shell go env GOPATH ) /bin/ory " -tags sqlite .
5153
5254.PHONY : refresh
5355refresh :
Original file line number Diff line number Diff line change @@ -12,6 +12,13 @@ $ curl https://raw.githubusercontent.com/ory/meta/master/install.sh | sh -s ory
1212$ ory help
1313```
1414
15+ or to build it from source and install it in your $GOPATH:
16+
17+ ``` shell-session
18+ $ make install
19+ $ ory help
20+ ```
21+
1522## macOS
1623
1724``` shell-session
You can’t perform that action at this time.
0 commit comments