Merge pull request #19022 from neovim/ci-macos-release

[Backport release-0.7] ci(release): skip CoreServices system library on macOS (#19021)
This commit is contained in:
Christian Clason
2022-06-19 17:01:41 +02:00
committed by GitHub

View File

@@ -102,7 +102,7 @@ jobs:
libs=($(otool -L nvim-osx64/bin/nvim | sed 1d | sed -E -e 's|^[[:space:]]*||' -e 's| .*||'))
echo "libs:"
for lib in "${libs[@]}"; do
if echo "$lib" | grep -q -E 'libSystem|CoreFoundation' 2>/dev/null; then
if echo "$lib" | grep -q -E 'libSystem|CoreServices' 2>/dev/null; then
echo " [skipped] $lib"
else
echo " $lib"