bytecodealliance / lucet

Lucet, the Sandboxing WebAssembly Compiler.
Apache License 2.0
4.06k stars 165 forks source link

Installation instructions for MacOS need to be updated #561

Closed mbrowne closed 4 years ago

mbrowne commented 4 years ago

The build instructions for MacOS currently say to run this command:

git submodule update --init

This does not work, because there are recursive submodules. This fixes it:

git submodule update --init --recursive