Skip to content
forked from neovim/neovim

Commit

Permalink
Merge pull request neovim#19022 from neovim/ci-macos-release
Browse files Browse the repository at this point in the history
[Backport release-0.7] ci(release): skip CoreServices system library on macOS (neovim#19021)
  • Loading branch information
clason committed Jun 19, 2022
2 parents cd7ac0e + e291570 commit d784474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d784474

Please sign in to comment.