vtm/tools/pack

14 lines
181 B
Plaintext
Raw Normal View History

2018-03-30 11:34:41 +02:00
#!/usr/bin/env sh
target=/tmp/vtm.tar.xz
tar \
--directory=.. \
--create \
--exclude='.git*' \
--exclude='tools*' \
vtm \
| xz \
> ${target}
echo "-- written to ${target}"