Merge pull request #17 from PeterBowman/fix-cmd-path

Drop path to `cut` command
This commit is contained in:
Andrew Walsh 2022-06-03 21:18:01 -07:00 committed by GitHub
commit d7e83f6ca0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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