Merge namecoin/ncdns-repro#184: Don't fail if output cache empty

d3ed19c790 Don't fail if output cache empty (Jeremy Rand)

Pull request description:

Top commit has no ACKs.
pull/183/head
Jeremy Rand 2 years ago
commit 9863169cc0
No known key found for this signature in database
GPG Key ID: EB03139A459DD06E

@ -59,7 +59,7 @@ cp -a ./out_cache2/* ./out/ || true
cp -a ./out_cache3/* ./out/ || true
echo "Initial output cache contents:"
find ./out/ -printf "%p %k KiB\n"
find ./out/ -printf "%p %k KiB\n" || true
echo "Unpacking interrupted cache..."
./tools/cirrus_unpack_interrupted.sh || true
@ -128,7 +128,7 @@ echo "Cleaning containers..."
rm -rfv out/container-image
echo "Final output cache contents:"
find ./out/ -printf "%p %k KiB\n"
find ./out/ -printf "%p %k KiB\n" || true
echo "Splitting caches..."
rsync -avu --delete ./out/encaya ./out/gocrosssign ./out/gosafetlsa ./out/q ./out_cache1/ || true

Loading…
Cancel
Save