mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
add tarball.sh script [ci skip]
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
4a8ab38c8b
commit
91970b0262
2 changed files with 12 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -30,5 +30,6 @@ package/debian/katie-*.log
|
||||||
package/debian/katie-*.substvars
|
package/debian/katie-*.substvars
|
||||||
package/debian/katie-*/
|
package/debian/katie-*/
|
||||||
|
|
||||||
# tarballs from oldmake.sh
|
# tarballs from tarball.sh and oldmake.sh
|
||||||
|
*.tar.xz
|
||||||
scripts/cmake-*.tar.gz
|
scripts/cmake-*.tar.gz
|
9
scripts/tarball.sh
Executable file
9
scripts/tarball.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cwd="$(realpath $(dirname $0))"
|
||||||
|
|
||||||
|
tarball="Katie-4.9.0-Source"
|
||||||
|
|
||||||
|
git archive HEAD --format=tar --prefix="$tarball/" | xz > "$cwd/../$tarball.tar.xz"
|
Loading…
Add table
Reference in a new issue