Browse Source

[tools] fix CPMUtil not properly fetching qt externals (#3407)

Signed-off-by: crueter <crueter@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3407
lizzie/qt-fix-user-dialogue
crueter 1 week ago
parent
commit
5e2c536a86
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 2
      tools/cpm/common.sh

2
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)')

Loading…
Cancel
Save