aztecrabbit / brainfuck-psiphon-pro-go

MIT License
71 stars 38 forks source link

Compilation instructions are wrong #19

Open dikonov opened 2 years ago

dikonov commented 2 years ago

The compilation instructions from the Readme fail.

$ go get -v -u -d github.com/aztecrabbit/brainfuck-psiphon-pro-go
$ cd ~/go/src/github.com/aztecrabbit/brainfuck-psiphon-pro-go
$ go build -ldflags "-s -w"

The cd ~/go/src/github.com/aztecrabbit/brainfuck-psiphon-pro-go command is wrong.

The first command downloads a bunch of files and the closest real path seems to be ~/go/pkg/mod/github.com/aztecrabbit/brainfuck-psiphon-pro-go@v1.3.210109.

However, the third command does not produce any binaries and complains go: go.mod file not found in current directory or any parent directory; see 'go help modules'

dikonov commented 2 years ago

Are there any RPM packages of this?

inj30ct commented 2 years ago

Are there any RPM packages of this?

You need to setting up GO111MODULE env variable to "off" solved it with this command

export GO111MODULE=off And follow the compilation instructions