diff options
author | Sven Gothel <[email protected]> | 2015-03-27 23:27:57 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-27 23:27:57 +0100 |
commit | 805b179aa915d49a38cb1471bd6b539d75aea1d1 (patch) | |
tree | 660cd23f87c31ba721abe8c6a2f98a7c58b147c4 /git/funcs_git.sh | |
parent | c9e3db639d9a451cdb34d777a01d104cbcfc8bf6 (diff) |
git-tag-tar...: Add jcpp and oculusvr-sdk; Use tar.xz compression for sources.
Diffstat (limited to 'git/funcs_git.sh')
-rwxr-xr-x | git/funcs_git.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/funcs_git.sh b/git/funcs_git.sh index d7160a6..d7f9c2d 100755 --- a/git/funcs_git.sh +++ b/git/funcs_git.sh @@ -14,8 +14,8 @@ function git-new-milestone() { mkdir -p ../archive/$new/ChangeLogs echo "Module $module - Tag $new" - git archive --format=tar --prefix=$module-$new/ $new | 7z a -si ../archive/$new/Sources/$module-$new.tar.7z -# git archive --format=tar --prefix=$module-$new/ $new | xz -z -9 > ../archive/$new/Sources/$module-$new.tar.xz +# git archive --format=tar --prefix=$module-$new/ $new | 7z a -si ../archive/$new/Sources/$module-$new.tar.7z + git archive --format=tar --prefix=$module-$new/ $new | xz -z -9 > ../archive/$new/Sources/$module-$new.tar.xz # git archive --format=zip --prefix=$module-$new/ $new -o ../archive/$new/Sources/$module-$new.zip git log --no-merges $new ^$last > ../archive/$new/ChangeLogs/$module-ChangeLog-$new.txt git shortlog --no-merges $new ^$last > ../archive/$new/ChangeLogs/$module-ShortLog-$new.txt |