1 Star 0 Fork 19

xietingwei/third_party_libfuse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
make_release_tarball.sh 809 Bytes
一键复制 编辑 原始数据 按行查看 历史
Alan Somers 提交于 2019-05-01 09:04 . Add CI for FreeBSD (#404)
#!/bin/sh
#
# Create tarball from Git tag, removing and adding
# some files.
#
set -e
if [ -z "$1" ]; then
TAG="$(git tag --list 'fuse-3*' --sort=-taggerdate | head -1)"
else
TAG="$1"
fi
echo "Creating release tarball for ${TAG}..."
git checkout -q "${TAG}"
doxygen doc/Doxyfile
mkdir "${TAG}"
git archive --format=tar "${TAG}" | tar -x "--directory=${TAG}"
find "${TAG}" -name .gitignore -delete
rm "${TAG}/make_release_tarball.sh" \
"${TAG}/.travis.yml" \
"${TAG}/.cirrus.yml"
cp -a doc/html "${TAG}/doc/"
tar -cJf "${TAG}.tar.xz" "${TAG}/"
gpg --armor --detach-sign "${TAG}.tar.xz"
PREV_TAG="$(git tag --list 'fuse-3*' --sort=-taggerdate --merged "${TAG}^"| head -1)"
echo "Contributors from ${PREV_TAG} to ${TAG}:"
git log --pretty="format:%an <%aE>" "${PREV_TAG}..${TAG}" | sort -u
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/twxie/third_party_libfuse.git
git@gitee.com:twxie/third_party_libfuse.git
twxie
third_party_libfuse
third_party_libfuse
master

搜索帮助