fix missing ) in hashes

This commit is contained in:
Trammell hudson 2018-09-18 12:35:19 -04:00
parent 54748c663a
commit a5a11e8213
Failed to extract signature

View File

@ -196,7 +196,7 @@ define do-cpio =
( cd "$2"; \
find . -type f -print0 \
| xargs -0 sha256sum \
>> "$(HASHES)" \
) >> "$(HASHES)" \
)
endef