README: improve tarball generation by tag example
- set the project name + '-' + tag name as prefix. - allow '/' in the tag name. - allow '-' as suffix in the tag.
This commit is contained in:
parent
31392c13cf
commit
20c37e4fe4
1 changed files with 8 additions and 2 deletions
10
README
10
README
|
@ -123,8 +123,14 @@ Create .tar.gz archives by tag
|
|||
name="stagit"
|
||||
mkdir -p archives
|
||||
git tag -l | while read -r t; do
|
||||
f="archives/$name-$t.tar.gz"
|
||||
test -f "$f" || git archive --format tar.gz "$t" -o "$f"
|
||||
f="archives/${name}-$(echo "${t}" | tr '/' '_').tar.gz"
|
||||
test -f "${f}" && continue
|
||||
git archive \
|
||||
--format tar.gz \
|
||||
--prefix "${t}/" \
|
||||
-o "${f}" \
|
||||
-- \
|
||||
"${t}"
|
||||
done
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue