From fcf74e1b16bed47d6128f9415c83967cc8dd00f8 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Fri, 26 Mar 2021 07:09:37 +0100 Subject: [PATCH] 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 --- docs/compile.md | 4 ++-- 1 file 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