SpinalHDL / SpinalCrypto

SpinalHDL - Cryptography libraries
MIT License
50 stars 19 forks source link

Update Installation Guide (Wiki) #14

Closed dnltz closed 2 years ago

dnltz commented 2 years ago

@Snoopy87 How can someone update the wiki?

The installation guide is in the wrong order and sbt uses now "publishLocal" AFAIK.

# Get the last version of SpinalCrypto
git clone https://github.com/SpinalHDL/SpinalCrypto.git
git pull origin master
cd SpinalCrypto
sbt publish-local 

should be

# Get the last version of SpinalCrypto
git clone https://github.com/SpinalHDL/SpinalCrypto.git
cd SpinalCrypto
git pull origin master
sbt publishLocal 

BTW: I think the git pull origin master is not necessary and can be removed.

Dolu1990 commented 2 years ago

Just added https://github.com/SpinalHDL/SpinalCrypto/wiki/Getting-started#using-the-library-without-publishlocal ^^

dnltz commented 2 years ago

thanks :)