tests: abuild: fix test to work with busybox sha512sum

busybox is picky with the spaces in the checksum file.
This commit is contained in:
Natanael Copa 2021-04-20 16:34:41 +02:00
parent b4d975a11f
commit d05dd6d9bd
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ teardown() {
echo "foo" > "$tmpdir"/foo/test.txt
cd "$tmpdir"/foo
abuild checksum
. ./APKBUILD && echo $sha512sums > sums
. ./APKBUILD && echo "$sha512sums" > sums
cat sums
sha512sum -c sums
}