Skip to content

Commit

Permalink
compile.md: fix instructions for Go 1.13+
Browse files Browse the repository at this point in the history
"go get -d" does not download to GOPATH/src anymore:
golang/go#31529

Use explicit "git clone" to the current directory as suggested
in golang/go#31529 (comment) .

Fixes rfjakob/gocryptfs#553
  • Loading branch information
rfjakob committed Mar 26, 2021
1 parent 3db011c commit fcf74e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/compile.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit fcf74e1

Please sign in to comment.