mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-15 21:28:38 +00:00
Vincent Batts
f49f66f61e
This cleans up the Makefile target, and drops the dependency to point to the $root path of the repo. Fixes https://github.com/vbatts/go-mtree/issues/98 Reported-by: Aleksa Sarai <asarai@suse.de> Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
24 lines
662 B
Bash
24 lines
662 B
Bash
#!/bin/bash
|
|
set -e
|
|
#set -x
|
|
|
|
name=$(basename $0)
|
|
root="$(dirname $(dirname $(dirname $0)))"
|
|
gomtree=$(readlink -f ${root}/gomtree)
|
|
t=$(mktemp -d /tmp/go-mtree.XXXXXX)
|
|
|
|
echo "[${name}] Running in ${t}"
|
|
|
|
pushd ${root}
|
|
git archive --format=tar HEAD^{tree} . > ${t}/${name}.tar
|
|
mkdir -p ${t}/extract
|
|
tar -C ${t}/extract/ -xf ${t}/${name}.tar
|
|
|
|
## This is a checking that keyword synonyms are respected
|
|
${gomtree} -k sha1digest -c -p ${t}/extract/ > ${t}/${name}.mtree
|
|
${gomtree} -k sha1 -f ${t}/${name}.mtree -p ${t}/extract/
|
|
${gomtree} -k sha1 -c -p ${t}/extract/ > ${t}/${name}.mtree
|
|
${gomtree} -k sha1digest -f ${t}/${name}.mtree -p ${t}/extract/
|
|
|
|
popd
|
|
rm -rf ${t}
|