mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-23 10:22:55 +00:00
9 lines
170 B
Bash
Executable file
9 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cwd="$(readlink -f $(dirname $0))"
|
|
|
|
tarball="Katie-4.14.0-Source"
|
|
|
|
git archive HEAD --format=tar --prefix="$tarball/" | xz > "$cwd/../$tarball.tar.xz"
|