rmapi icon indicating copy to clipboard operation
rmapi copied to clipboard

Install from source broken

Open yara-blue opened this issue 3 years ago • 1 comments

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.

yara-blue avatar Mar 02 '22 15:03 yara-blue

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.

cloudsftp avatar Apr 15 '22 12:04 cloudsftp