From 7e18ee6b868b231707557174a310606161e99498 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Fri, 26 Mar 2021 07:07:23 +0100 Subject: [PATCH] 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 --- README.md | 6 +++--- 1 file 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`,