From 5e2c536a860bbc319d1e09b303a2d7aa381bd98f Mon Sep 17 00:00:00 2001 From: crueter Date: Wed, 28 Jan 2026 21:16:49 +0100 Subject: [PATCH] [tools] fix CPMUtil not properly fetching qt externals (#3407) Signed-off-by: crueter Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3407 --- tools/cpm/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cpm/common.sh b/tools/cpm/common.sh index 97a2fed003..2dc3a477d4 100755 --- a/tools/cpm/common.sh +++ b/tools/cpm/common.sh @@ -23,7 +23,7 @@ MAXDEPTH=3 # For your project you'll want to change this to define what dirs you have cpmfiles in # Remember to account for the MAXDEPTH variable! # Adding ./ before each will help to remove duplicates -CPMFILES=$(find . -maxdepth "$MAXDEPTH" -name cpmfile.json | sort | uniq) +CPMFILES=$(find . src -maxdepth "$MAXDEPTH" -name cpmfile.json | sort | uniq) # shellcheck disable=SC2016 PACKAGES=$(echo "$CPMFILES" | xargs jq -s 'reduce .[] as $item ({}; . * $item)')