blob: e3b1a9702baf396a07c5ee28ff2b61005b65cc06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh -e
# Create a distribution tarball, like 'make dist' from autotools.
cd "$(git rev-parse --show-toplevel)"
ver=$(git describe | sed 's/^v//' | sed 's/-/\./g')
test 0 -ne $(git status --porcelain | wc -l) && \
echo "Git working tree is dirty, make it clean first" && \
exit 1
git submodule status --recursive | grep -q '^[^ ]' && \
echo "Git submodules are dirty, run: git submodule update --recursive --init" && \
exit 2
# 'git ls-files --recurse-submodules' works only if modules are initialized
name="knot-resolver-$ver"
tar caf "$name.tar.xz" -h --no-recursion --transform "s|^|$name/|" -- $(git ls-files --recurse-submodules)
echo "$name.tar.xz"
|