vtm/tools/pack
2025-09-23 12:13:49 +02:00

14 lines
181 B
Bash
Executable file

#!/usr/bin/env sh
target=/tmp/vtm.tar.xz
tar \
--directory=.. \
--create \
--exclude='.git*' \
--exclude='tools*' \
vtm \
| xz \
> ${target}
echo "-- written to ${target}"