summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-19 01:07:24 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-19 01:07:24 (EDT)
commitad84db7ac674e52fc495c35e5a0d6e13dcf4822a (patch)
tree3b495b7ad602fe20d9020f1dfa38b77a0b27b3b2
parent5a771c1b3c45c3d602662a480915f7ddd87af2c1 (diff)
install_get_pkgs(): Use ${MD5SUM}
-rw-r--r--src/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install.sh b/src/install.sh
index 9a9b7e5..40d4418 100644
--- a/src/install.sh
+++ b/src/install.sh
@@ -286,7 +286,7 @@ install_get_pkgs()
if [ "x${md5sum}" != 'x' ]; then
if ! printf '%s %s\n' \
"${md5sum}" "${root}/${fname}" | \
- md5sum -c >/dev/null 2>&1; then
+ ${MD5SUM} -c >/dev/null 2>&1; then
error "$(get_msg 'install_checksum_fail')"
errors=true
continue