diff options
Diffstat (limited to 'extract_utils.sh')
-rw-r--r-- | extract_utils.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extract_utils.sh b/extract_utils.sh index 2355203..4c76b44 100644 --- a/extract_utils.sh +++ b/extract_utils.sh @@ -1024,7 +1024,7 @@ function extract() { mkdir -p $(dirname "${VENDOR_REPO_FILE}") # Check pinned files - local HASH="${HASHLIST[$i-1]}" + local HASH="$(echo ${HASHLIST[$i-1]} | awk '{ print tolower($0); }')" local KEEP="" if [ "$DISABLE_PINNING" != "1" ] && [ ! -z "$HASH" ] && [ "$HASH" != "x" ]; then if [ -f "${VENDOR_REPO_FILE}" ]; then |