1 Star 0 Fork 30

sssgit/image2webp

forked from ClownFish/image2webp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.sh 353 Bytes
一键复制 编辑 原始数据 按行查看 历史
ClownFish 提交于 2020-04-08 17:45 . init upload
#!/bin/bash
CGO_ENABLED=0
if [ "${1}" == "windows" ]
then
echo "The Windows operating system is not supported!"
exit;
elif [ "${1}" == "osx" ]
then
go build -v -ldflags "-s -w" -o builds/image2webp-darwin-${2}
else
go build -v -ldflags "-s -w" -o builds/image2webp-${1}-${2}
fi
cp ./config.json ./builds/
echo "build done!"
ls builds
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sss1234/image2webp.git
git@gitee.com:sss1234/image2webp.git
sss1234
image2webp
image2webp
master

搜索帮助