We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb1ec9 commit 87eefc8Copy full SHA for 87eefc8
2 files changed
Makefile
@@ -47,7 +47,9 @@ lint: .bin/golangci-lint-$(GOLANGCI_LINT_VERSION)
47
48
.PHONY: install
49
install:
50
- GO111MODULE=on go install -tags sqlite .
+ # Until https://github.com/golang/go/issues/44469 is resolved, we have to do two steps to customize the executable name.
51
+ GO111MODULE=on go build -o ory -tags sqlite .
52
+ cp ./ory "$(shell go env GOPATH)/bin/ory"
53
54
.PHONY: refresh
55
refresh:
README.md
@@ -12,6 +12,12 @@ $ curl https://raw.githubusercontent.com/ory/meta/master/install.sh | sh -s ory
12
$ ory help
13
```
14
15
+or to build it from source and install it in your $GOPATH:
16
+
17
+```shell-session
18
+$ make install
19
+```
20
21
## macOS
22
23
```shell-session
0 commit comments