rmapi
rmapi copied to clipboard
Install from source broken
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 [email protected]:juruen/rmapi.git
cd rmapi
go build
cp rmapi .local/bin/
And a windows and mac equivalents.
For me (at tag v0.0.19),
git clone [email protected]: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.