Skip to content

Commit 5dc8fdf

Browse files
committed
Yet another CI fix
1 parent 9a28acf commit 5dc8fdf

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

package.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,7 @@ case $1 in
3333
exit 1
3434
fi
3535
do_build
36-
for binary in bin/*; do
37-
echo -n "${PATH}" | tr ';' '\0' | \
38-
xargs -t0 mingw-ldd "$binary" --disable-multiprocessing --dll-lookup-dirs | \
39-
{ grep -v -e 'not found' -e 'system32' || test $? = 1; } | \
40-
awk -F '=> ' '{ print $2 }' | xargs -I deps cp deps bin/
41-
done
36+
ntldd -R bin/* | grep ucrt64 | awk -F '=> ' '{ print $2 }' | awk '{ print $1 }' | sed 's/\\/\\\\/g' | xargs -I deps cp deps bin
4237
makensis package/installer.nsi
4338
;;
4439

0 commit comments

Comments
 (0)