Skip to content

Commit

Permalink
README: fix compile 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 #553
  • Loading branch information
rfjakob committed Mar 26, 2021
1 parent d7d79aa commit 7e18ee6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
Expand Down

0 comments on commit 7e18ee6

Please sign in to comment.