Skip to content

Commit c92b453

Browse files
committed
actions: attempt to escape macos bash script
1 parent f139ee2 commit c92b453

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/build.yml

+17-17
Original file line numberDiff line numberDiff line change
@@ -580,23 +580,23 @@ jobs:
580580
581581
- name: Fix non-Qt dependencies
582582
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+
}
600600
fix_dep ~/QLC+.app/Contents/Frameworks/libsndfile.1.dylib
601601
602602
- name: Run macosdeploy

0 commit comments

Comments
 (0)