diff options
author | Jakob Unterwurzacher | 2021-03-26 07:09:37 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-03-26 07:09:37 +0100 |
commit | fcf74e1b16bed47d6128f9415c83967cc8dd00f8 (patch) | |
tree | c5fa93017118be44179e1fc1ce8c73bccac482ee | |
parent | 3db011cf15e5fba1e7c2ab5cdfb776aff43fac12 (diff) |
compile.md: fix instructions for Go 1.13+
"go get -d" does not download to GOPATH/src anymore:
https://github.com/golang/go/issues/31529
Use explicit "git clone" to the current directory as suggested
in https://github.com/golang/go/issues/31529#issuecomment-484920157 .
Fixes https://github.com/rfjakob/gocryptfs/issues/553
-rw-r--r-- | docs/compile.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/compile.md b/docs/compile.md index 86c447f..33c2c52 100644 --- a/docs/compile.md +++ b/docs/compile.md @@ -1,8 +1,8 @@ Compile gocryptfs from Source ============================= - go get -d github.com/rfjakob/gocryptfs - cd $(go env GOPATH)/src/github.com/rfjakob/gocryptfs + git clone https://github.com/rfjakob/gocryptfs.git + cd gocryptfs ./build.bash build.bash needs Go 1.7+ and the OpenSSL headers installed |