You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
358 B
24 lines
358 B
#!/bin/bash
|
|
|
|
tag=1.13.1
|
|
|
|
set -e
|
|
|
|
tmp=$(mktemp -d)
|
|
|
|
trap cleanup EXIT
|
|
cleanup() {
|
|
set +e
|
|
[ -z "$tmp" -o ! -d "$tmp" ] || rm -rf "$tmp"
|
|
}
|
|
|
|
unset CDPATH
|
|
pwd=$(pwd)
|
|
|
|
pushd "$tmp"
|
|
git clone git://github.com/jashkenas/underscore.git
|
|
cd underscore
|
|
git archive --prefix="test/" --format=tar tags/${tag}:test/ \
|
|
| bzip2 > "$pwd"/tests-${tag}.tar.bz2
|
|
popd
|