diff --git a/utils/scripts/setup-env.bash b/utils/scripts/setup-env.bash index e564c960..f1c18cb0 100644 --- a/utils/scripts/setup-env.bash +++ b/utils/scripts/setup-env.bash @@ -45,7 +45,15 @@ if [ $SETUP_NETWORK = true ]; then sudo apt-get install --assume-yes \ libprotobuf-dev libprotobuf-c-dev protobuf-c-compiler protobuf-compiler python3-protobuf \ protobuf-compiler-grpc libgrpc-dev libgrpc++-dev \ - libwebsockets-dev libpaho-mqtt-dev + libpaho-mqtt-dev + # Setup libwebsockets + git clone https://github.com/warmcat/libwebsockets.git + pushd libwebsockets + mkdir build + cd build + cmake .. + make + popd # Setup crow curl --proto '=https' --tlsv1.2 -L -o ./crow.deb "${CROW_URL}" sudo apt-get install --assume-yes ./crow.deb