mirror of
https://github.com/EtherDream/jsproxy
synced 2024-11-22 09:58:46 +00:00
11 lines
168 B
Bash
11 lines
168 B
Bash
#!/usr/bin/env bash
|
|
# 功能:安装 brotli 压缩工具
|
|
|
|
git clone --depth 1 https://github.com/google/brotli.git
|
|
cd brotli
|
|
|
|
make
|
|
mv bin/brotli ~
|
|
|
|
cd ..
|
|
rm -rf brotli |