diff options
author | Jakob Unterwurzacher | 2021-03-26 07:07:23 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-03-26 07:10:05 +0100 |
commit | 7e18ee6b868b231707557174a310606161e99498 (patch) | |
tree | 5dfbca4f860c6e115d7c8e56832ba3a71506451b | |
parent | d7d79aa81c6d8f07e8b5c3f689b528462f32daa0 (diff) |
README: fix compile 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-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -96,10 +96,10 @@ as well as in the go-fuse library. Compile ------- -With [go 1.11 or higher](.travis.yml#L12): +With go 1.11 or higher: - $ 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 the OpenSSL headers installed (Debian: `apt install libssl-dev`, |