mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-03 17:33:26 +00:00
096bfacad7
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
8 lines
261 B
Bash
Executable File
8 lines
261 B
Bash
Executable File
if test -f ./src/server_u.ts; then
|
|
if ! test -f ./v20.43.0.zip; then
|
|
wget --quiet https://github.com/uNetworking/uWebSockets.js/archive/refs/tags/v20.43.0.zip
|
|
fi
|
|
if ! test -f ./src/uws/uws.js; then
|
|
unzip -qq -j ./v20.43.0.zip -d ./src/uws/
|
|
fi
|
|
fi |