aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-03-26 07:07:23 +0100
committerJakob Unterwurzacher2021-03-26 07:10:05 +0100
commit7e18ee6b868b231707557174a310606161e99498 (patch)
tree5dfbca4f860c6e115d7c8e56832ba3a71506451b /README.md
parentd7d79aa81c6d8f07e8b5c3f689b528462f32daa0 (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
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b44071e..a84f96f 100644
--- a/README.md
+++ b/README.md
@@ -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`,