mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 19:32:57 +00:00
10 lines
166 B
Bash
10 lines
166 B
Bash
![]() |
#!/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"
|