platform/server/uws/uws.sh
Andrey Sobolev 87ded4d797
UBERF-7690: Performance fixes (#6336)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-08-15 17:30:25 +07:00

11 lines
259 B
Bash
Executable File

#!/usr/bin/env bash
mkdir -p ./.build
cd ./.build
if ! test -f ./v20.47.0.zip; then
wget --quiet https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v20.47.0.zip
fi
if ! test -f ../lib/uws.js; then
unzip -qq -j -o ./v20.47.0.zip -d ../lib
fi