mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 11:31:57 +03:00
9 lines
238 B
Bash
9 lines
238 B
Bash
|
mkdir -p ./.build
|
||
|
cd ./.build
|
||
|
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 ../lib/uws.js; then
|
||
|
unzip -qq -j -o ./v20.43.0.zip -d ../lib
|
||
|
fi
|