Fix cut regression.

Originally fixed in #17. This was reintroduced when master was sync'd to staging.
This commit is contained in:
Andrew Walsh 2022-07-20 10:59:01 -07:00 committed by GitHub
parent c4bc8b6ed5
commit 7a07525a11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ log "- Normalized package list is '${normalized_versioned_packages}'."
value="${normalized_versioned_packages} @ ${version}"
log "- Value to hash is '${value}'."
key="$(echo "${value}" | md5sum | /bin/cut -f1 -d' ')"
key="$(echo "${value}" | md5sum | cut -f1 -d' ')"
log "- Value hashed as '${key}'."
log "done."