mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-14 20:58:41 +00:00
22 lines
587 B
Bash
22 lines
587 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
name=$(basename $0)
|
|
root="$(dirname $(dirname $(dirname $0)))"
|
|
gomtree=$(go run ${root}/test/realpath/main.go ${root}/gomtree)
|
|
t=$(mktemp -d /tmp/go-mtree.XXXXXX)
|
|
|
|
echo "[${name}] Running in ${t}"
|
|
|
|
pushd ${root}
|
|
mkdir -p ${t}/extract
|
|
git archive --format=tar HEAD^{tree} . | tar -C ${t}/extract/ -x
|
|
|
|
${gomtree} -K sha256digest -c -p ${t}/extract/ > ${t}/${name}.mtree
|
|
|
|
## This is a use-case for checking a directory, but by reading the manifest from stdin
|
|
## since the `-f` flag is not provided.
|
|
cat ${t}/${name}.mtree | ${gomtree} -p ${t}/extract/
|
|
|
|
popd
|
|
rm -rf ${t}
|