vtm/tools/pack.sh
Christian Fraß 10c8a9c31a anpassungen
2018-03-30 11:34:41 +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}"