File tree 1 file changed +17
-17
lines changed
1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -580,23 +580,23 @@ jobs:
580
580
581
581
- name : Fix non-Qt dependencies
582
582
shell : bash
583
- run : |-
584
- fix_dep () { \
585
- echo "Processing $1..." \
586
- for dep in `otool -L $1 | grep opt | cut -d ' ' -f 1` \
587
- do \
588
- if [[ "$dep" == *$HOMEBREW_PREFIX* ]]; then \
589
- subst=${dep##*/} \
590
- echo "Regular lib: $dep ($subst)" \
591
- # check missing dependency \
592
- if [ ! -f ~/QLC+.app/Contents/Frameworks/$subst ]; then \
593
- echo "Dependency missing: $subst. Adding it to target..." \
594
- cp $dep ~/QLC+.app/Contents/Frameworks/ \
595
- fi \
596
- install_name_tool -change $dep @executable_path/../Frameworks/$subst $1 \
597
- fi \
598
- done \
599
- } \
583
+ run : |
584
+ fix_dep () {
585
+ echo "Processing \ $1..."
586
+ for dep in `otool -L \ $1 | grep opt | cut -d ' ' -f 1`
587
+ do
588
+ if [[ "\ $dep" == *\ $HOMEBREW_PREFIX* ]]; then
589
+ subst=\ ${dep##*/}
590
+ echo "Regular lib: \ $dep (\ $subst)"
591
+ # check missing dependency
592
+ if [ ! -f ~/QLC+.app/Contents/Frameworks/\ $subst ]; then
593
+ echo "Dependency missing: \ $subst. Adding it to target..."
594
+ cp \ $dep ~/QLC+.app/Contents/Frameworks/
595
+ fi
596
+ install_name_tool -change \ $dep @executable_path/../Frameworks/\ $subst \$1
597
+ fi
598
+ done
599
+ }
600
600
fix_dep ~/QLC+.app/Contents/Frameworks/libsndfile.1.dylib
601
601
602
602
- name : Run macosdeploy
You can’t perform that action at this time.
0 commit comments