18 Star 46 Fork 0

联盟少侠/koolproxyR

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backup.sh 696 Bytes
一键复制 编辑 原始数据 按行查看 历史
联盟少侠 提交于 2019-07-01 23:02 . 2.2.0
#! /bin/sh
# you can do something here
# this shell scripts will run at the end of build.py scripts
tar_name="koolproxyR.tar.gz"
mkdir -p history
if [ ! -f ./history/version ]; then
touch ./history/version
fi
version_old=`cat history/version | sed -n '$p' | cut -d \ -f1`
version_new=`cat version |sed -n 1p`
md5_new=` md5sum $tar_name | cut -d \ -f1`
# 保证md5连续性
wget -O ./history/version https://dev.tencent.com/u/shaoxia1991/p/koolproxyr/git/raw/master/history/version
if [ -f ./$tar_name ]; then
if [ "$version_old" != "$version_new" ]; then
mkdir ./history/$version_new/
cp ./$tar_name ./history/$version_new/
echo $version_new $md5_new >> ./history/version
fi
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/shaoxia1991/koolproxyR.git
git@gitee.com:shaoxia1991/koolproxyR.git
shaoxia1991
koolproxyR
koolproxyR
master

搜索帮助