mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-03 22:53:08 +00:00
8 lines
170 B
Bash
8 lines
170 B
Bash
|
|
#!/bin/bash
|
||
|
|
echo "Running setup task..."
|
||
|
|
|
||
|
|
echo "Init Submodules..."
|
||
|
|
git submodule update --init --recursive
|
||
|
|
|
||
|
|
echo "Building Waku..."
|
||
|
|
( cd vendor/waku && make -j14 librln)
|