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 do two steps to customize the executable name.
4950install :
50- GO111MODULE=on go install -tags sqlite .
51+ GO111MODULE=on go build -o ory -tags sqlite .
52+ cp ./ory " $( shell go env GOPATH) /bin/ory"
5153
5254.PHONY : refresh
5355refresh :
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ $ 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+ ```
20+
1521## macOS
1622
1723``` shell-session
You can’t perform that action at this time.
0 commit comments