95a46c5577
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
8 lines
176 B
Bash
8 lines
176 B
Bash
#!/bin/sh
|
|
|
|
version=$1
|
|
|
|
[ "$version" ] || exit 3
|
|
|
|
git archive --format=tar --prefix=gpm-${version}/ HEAD | \
|
|
tee ../gpm-${version}.tar | bzip2 -9 > ../gpm-${version}.tar.bz2
|