1 Star 0 Fork 18

苏北辰/OpenCore-x79-e5-2670-rx588

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 562 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
name="OpenCore-"
srcFile="/"
srcPath="./OpenCore"
targetPath="./build"
version=0.7.5
date=$(date +%Y%m%d)
cpu=-REL-
if [ -d $srcPath/$srcFile ];then
echo "打包目录存在"
if [ -d $targetPath ];then
tar -zcvf $targetPath/$name$version$cpu$date.tar.gz --exclude=.DS_Store $srcPath/$srcFile
else
echo "打包目录不存在"
fi
echo "打包完成开始生成sha256sum码"
fi
if [ -d $targetPath ];then
md5sum $targetPath/$name$version$cpu$date.tar.gz >$targetPath/$name$version$cpu$date.tar.gz.sha256sum.txt
else
echo "存放目录不存在"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/abcgoodwei/clover-x79-e5-2670-rx588.git
git@gitee.com:abcgoodwei/clover-x79-e5-2670-rx588.git
abcgoodwei
clover-x79-e5-2670-rx588
OpenCore-x79-e5-2670-rx588
master

搜索帮助