From f9249d657f357c24df8ff60a0f7c977b6fda0ff5 Mon Sep 17 00:00:00 2001 From: Martin Wimpress <304639+flexiondotorg@users.noreply.github.com> Date: Sat, 24 Jan 2026 12:38:45 +0000 Subject: [PATCH] fix: verify all mtools are available 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 7ac1038..d704e55 100755 --- a/quickget +++ b/quickget @@ -2300,7 +2300,7 @@ function get_macos() { # Check if mtools and sgdisk are available for integrated OpenCore MCOPY=$(command -v mcopy) - if [ ! -x "${MCOPY}" ] || [ ! -x "$(command -v sgdisk)" ]; then + if [ ! -x "${MCOPY}" ] || [ ! -x "$(command -v mformat)" ] || [ ! -x "$(command -v mmd)" ] || [ ! -x "$(command -v sgdisk)" ]; then echo " - NOTE: mtools or sgdisk not found, using legacy OpenCore.qcow2 method." USE_INTEGRATED_OPENCORE=0 fi