Skip to content

Commit

Permalink
Fix cut regression.
Browse files Browse the repository at this point in the history
Originally fixed in #17. This was reintroduced when master was sync'd to staging.
  • Loading branch information
awalsh128 authored Jul 20, 2022
1 parent 704b3e1 commit 9713373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pre_cache_action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 9713373

Please sign in to comment.