From c96a2484e6f632dc0a4c2f0d85c6d4b2fd3e4ea0 Mon Sep 17 00:00:00 2001 From: Martin Wimpress <304639+flexiondotorg@users.noreply.github.com> Date: Sat, 24 Jan 2026 12:39:17 +0000 Subject: [PATCH] fix: prevent FAT direectory name munging Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index d704e55..38a4ba9 100755 --- a/quickget +++ b/quickget @@ -311,7 +311,7 @@ function create_macos_disk_with_opencore() { fi fi if [ -d "${OPENCORE_DIR}/EFI/OC" ]; then - if ! ${MCOPY} -i "${TEMP_DISK}@@${EFI_OFFSET_BYTES}" -s "${OPENCORE_DIR}/EFI/OC" ::/EFI/; then + if ! LC_ALL='' ${MCOPY} -i "${TEMP_DISK}@@${EFI_OFFSET_BYTES}" -s "${OPENCORE_DIR}/EFI/OC" ::/EFI/; then echo "ERROR! Failed to copy EFI/OC to disk." rm -f "${TEMP_DISK}" return 1