Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > fe049acc1eaaed54b93256302b8be3fd > files > 1

nodejs-js-yaml-2.1.3-1.mga5.src.rpm

#!/bin/bash

tag=2.4.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 https://github.com/bestiejs/lodash.git
cd lodash
git archive --prefix="test/" --format=tar tags/${tag}:test/ \
    | bzip2 > "$pwd"/tests-${tag}.tar.bz2
popd