1 Star 0 Fork 2

love / kodexplorer-plugins

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
release.sh 451 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhtengw 提交于 2020-05-19 17:25 . Update release link in README.md
#!/bin/bash
CURRDIR=$(cd "$(dirname "$0")";pwd)
for kod in kodexplorer kodbox
do
cd ${CURRDIR}/${kod}-plugins
# Clean up old release zip
find ./ -maxdepth 1 -name "*.zip" -print0 | xargs -0 rm
zip -rq plugins-pack-$(date "+%Y.%m.%d")-for_${kod}.zip ./
for plugin in $(find ./ -maxdepth 1 -type d ! -name .)
do
VERSION=$(jq -r .version ${plugin}/package.json)
zip -rq ${plugin}-v${VERSION}-for_${kod}.zip ${plugin}
done
done
1
https://gitee.com/otv/kodexplorer-plugins.git
git@gitee.com:otv/kodexplorer-plugins.git
otv
kodexplorer-plugins
kodexplorer-plugins
master

搜索帮助