Install from source broken
dvdsk opened this issue · 1 comments
dvdsk commented
On modern go installs go get
is deprecated. Its replacement go install
however, does not work if there is a replace directive in the go module, which there currently is.
Either the replace directive needs to go and the install instructions updated to use go install
or the instructions should become:
git clone git@github.com:juruen/rmapi.git
cd rmapi
go build
cp rmapi .local/bin/
And a windows and mac equivalents.
cloudsftp commented
For me (at tag v0.0.19
),
git clone git@github.com:juruen/rmapi.git
cd rmapi
git checkout v0.0.19 # not necessary
go install
worked just fine.
But yeah without cloning I get the same error.