vacp2p / nim-libp2p

libp2p implementation in Nim
https://vacp2p.github.io/nim-libp2p/docs/
MIT License
249 stars 54 forks source link

Multiaddress test fail #14

Closed Swader closed 5 years ago

Swader commented 5 years ago
Error: unhandled exception: cannot open: C:\Users\Bruno\repos\nim-libp2p\libp2p\crypto\BearSSL\src\codec\ccopy.c [IOError]
stack trace: (most recent call last)
C:\Users\Bruno\repos\nim-libp2p\libp2p.nimble(19) testTask
C:\Users\Bruno\repos\Nim\lib\system\nimscript.nim(237) exec
C:\Users\Bruno\repos\Nim\lib\system\nimscript.nim(237, 7) Error: unhandled exception: FAILED: nim c -r tests/testmultiaddress
stefantalpalaru commented 5 years ago

This project has submodules. Run: git submodule update --init --recursive.

cheatfate commented 5 years ago

@stefantalpalaru can i somehow put this git submodule update --init --recursive into nimble hook?

stefantalpalaru commented 5 years ago

I wouldn't, because you don't want it running every time you execute a Nimble task and if you start adding checks in there it gets ugly.

Better put it in the README.

Swader commented 5 years ago

Thank you