diff options
author | just_fun <just.the.real.fun@gmail.com> | 2017-04-08 21:21:41 +0300 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2017-04-19 18:17:12 +0200 |
commit | 858ea9a42b1e543635778187fc53b3e7bb96dc51 (patch) | |
tree | fcdbd16d70cf04f53abc83933c4cbe72dc891903 | |
parent | 0e976e8beb10b70177cfc6436e20d201eec05b33 (diff) | |
download | pkgutils-858ea9a42b1e543635778187fc53b3e7bb96dc51.tar.gz pkgutils-858ea9a42b1e543635778187fc53b3e7bb96dc51.tar.xz |
pkgmk: update .md5sum if present (even when the port was signed)
-rwxr-xr-x | pkgmk.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -504,7 +504,7 @@ make_work_dir() { if [ "$PKGMK_IGNORE_SIGNATURE" = "no" ] || [ "$PKGMK_CHECK_SIGNATURE" = "yes" ]; then test -f $PKGMK_SIGNATURE && cp $PKGMK_SIGNATURE $PKGMK_WORK_DIR - if check_signature + if check_signature && test ! -f $PKGMK_MD5SUM then return 0 fi |